/* ══ FONTS ══ */
:root {
  --font-primary:   'Inter', sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  --blue:      #4b83ff;
  --blue-lt:   #3B82F6;
  --blue-bg:   #EFF6FF;
  --navy:      #0F2044;
  --green:     #10B981;
  --dark:      #0F172A;
  --gray:      #64748B;
  --gray-lt:   #F8FAFC;
  --border:    #E2E8F0;
}

/* All headings → Inter */
.srv-listing-heading,
.srv-hero-heading,
.srv-section-heading,
.srv-feature-heading,
.srv-category-title,
.srv-card-title,
.srv-price-name,
.srv-faq-question,
.srv-resource-title,
.srv-final-cta h2 {
  font-family: var(--font-primary);
}

/* All body/desc text → Plus Jakarta Sans */
.srv-listing-sub,
.srv-hero-desc,
.srv-section-sub,
.srv-feature-body,
.srv-card-desc,
.srv-price-desc,
.srv-testimonial-text,
.srv-faq-answer p,
.srv-resource-excerpt,
.srv-step-desc,
.srv-category-sub,
.srv-final-cta p {
  font-family: var(--font-secondary);
}

/* ══ CONTAINER ══ */
.srv-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══ LISTING PAGE HERO ══ */
.srv-listing-hero {
  background: linear-gradient(180deg, #EFF6FF 0%, #fff 100%);
  text-align: center;
  padding: 80px 0 60px;
}

.srv-eyebrow,
.srv-hero-eyebrow,
.srv-section-eyebrow,
.srv-feature-eyebrow,
.srv-bento-eyebrow {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 12px;
}

.srv-listing-heading {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.srv-listing-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.srv-blue { color: var(--blue-lt); }
.srv-blue-italic { color: var(--blue-lt); font-style: italic; }

/* ══ CATEGORY TABS ══ */
.srv-listing-tabs-section {
  padding: 0 0 48px;
  background: #fff;
}

.srv-category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.srv-tab-btn {
  font-family: var(--font-primary);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.25s ease;
}

.srv-tab-btn:hover,
.srv-tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ══ SERVICES CARDS GRID ══ */
.srv-listing-grid-section {
  padding: 0 0 80px;
  background: #fff;
}

.srv-category-header {
  margin-bottom: 40px;
}

.srv-category-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.srv-category-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.65;
}

.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ══ SERVICE CARD ══ */
.srv-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}

.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29,78,216,0.12);
  border-color: rgba(59,130,246,0.35);
}

/* Featured card highlight */
.srv-card-featured {
  border-color: rgba(29,78,216,0.25);
  background: linear-gradient(135deg, #EFF6FF, #fff);
}

.srv-card-badge-top {
  position: absolute;
  top: 16px;
  right: 16px;
}

.srv-badge-free {
  background: var(--green);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
}

.srv-badge-new {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Card icon */
.srv-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.srv-icon-green  { background: #D1FAE5; }
.srv-icon-green svg  { color: #059669; }
.srv-icon-purple { background: #EDE9FE; }
.srv-icon-purple svg { color: #7C3AED; }
.srv-icon-orange { background: #FEF3C7; }
.srv-icon-orange svg { color: #D97706; }
.srv-icon-blue   { background: #DBEAFE; }
.srv-icon-blue svg   { color: var(--blue); }
.srv-icon-linkedin { background: #DBEAFE; }
.srv-icon-linkedin svg { color: #0A66C2; width:20px;height:20px; }
.srv-icon-teal   { background: #CCFBF1; }
.srv-icon-teal svg   { color: #0D9488; }
.srv-icon-indigo { background: #E0E7FF; }
.srv-icon-indigo svg { color: #4338CA; }
.srv-icon-pink   { background: #FCE7F3; }
.srv-icon-pink svg   { color: #DB2777; }

/* Card content */
.srv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.srv-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.srv-card-arrow {
  font-size: 18px;
  color: var(--blue-lt);
  transition: transform 0.2s;
}

.srv-card:hover .srv-card-arrow {
  transform: translateX(4px);
}

.srv-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.srv-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

.srv-tag {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #F1F5F9;
  color: #475569;
}

.srv-tag-green { background: #D1FAE5; color: #065F46; }
.srv-tag-blue  { background: #DBEAFE; color: #1E40AF; }

/* ══ LISTING CTA ══ */
.srv-listing-cta {
  background: var(--navy);
  text-align: center;
  padding: 80px 32px;
}

.srv-listing-cta h2 {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.srv-listing-cta p {
  font-family: var(--font-secondary);
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

/* ══ BUTTONS ══ */
.srv-btn-primary,
.srv-btn-hero {
  font-family: var(--font-primary);
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 
    background 0.25s, 
    transform 0.2s, 
    box-shadow 0.25s;
  border: none;
  cursor: pointer;
}

.srv-btn-primary:hover,
.srv-btn-hero:hover {
  background: #1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29,78,216,0.3);
}

.srv-btn-outline {
  font-family: var(--font-primary);
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.srv-btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.srv-btn-white {
  font-family: var(--font-primary);
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
}

.srv-btn-white:hover {
  background: var(--blue-bg);
  transform: translateY(-2px);
}

/* ══ INDIVIDUAL SERVICE PAGE HERO ══ */
.srv-hero {
  background: linear-gradient(160deg, #EFF6FF 0%, #fff 60%);
  text-align: center;
  padding: 80px 32px 64px;
  position: relative;
  overflow: hidden;
}

/* Floating decorative icons */
.srv-hero-float {
  position: absolute;
  z-index: 0;
}

.srv-float-left {
  left: 6%;
  top: 40%;
}

.srv-float-right-top {
  right: 7%;
  top: 25%;
}

.srv-float-right-bottom {
  right: 9%;
  top: 60%;
}

.srv-float-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  animation: float-gentle 4s ease-in-out infinite;
}

.srv-float-right-top .srv-float-icon {
  animation-delay: 1s;
}

.srv-float-right-bottom .srv-float-icon {
  animation-delay: 2s;
  width: 40px; height: 40px; font-size: 16px;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.srv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.srv-hero-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}

.srv-hero-blue {
  color: var(--blue-lt);
  display: inline;
  margin-left: 6px;
}

.srv-hero-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  color: #475569;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* Checkmarks row */
.srv-checks-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.srv-check-item {
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
}

.srv-check-circle {
  width: 20px;
  height: 20px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--dark);
  flex-shrink: 0;
}

/* ══ HOW IT WORKS ══ */
.srv-how-it-works {
  background: var(--blue-bg);
  padding: 80px 32px;
}

.srv-section-heading {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.srv-section-sub {
  font-size: 16px;
  color: var(--gray);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
  line-height: 1.65;
}

.srv-steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.srv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.srv-step-arrow {
  font-size: 24px;
  color: var(--gray);
  margin-top: 80px;
  padding: 0 20px;
}

/* Step illustration cards */
.srv-step-illustration {
  width: 100%;
}

.srv-step-mock {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-mock-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.srv-upload-icon {
  width: 32px;
  height: 32px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue);
}

.srv-upload-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}

.srv-mock-url-bar {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  width: 80%;
}

.srv-mock-btn {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-top: 4px;
}

/* Expert card */
.srv-expert-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-expert-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  margin: 0 auto;
}

.srv-expert-label {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

.srv-expert-lines,
.srv-feat-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.srv-eline {
  height: 7px;
  background: #E2E8F0;
  border-radius: 4px;
}

.srv-eline-short { width: 65%; }

/* Result card */
.srv-result-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.srv-result-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.srv-result-score {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-result-score span {
  position: absolute;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
}

.srv-rline {
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
}

.srv-rline-short { width: 60%; }

.srv-step-desc {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 500;
  max-width: 220px;
}

/* ══ FEATURES ALTERNATING ══ */
.srv-features {
  padding: 80px 32px;
  background: #fff;
}

.srv-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #F1F5F9;
}

.srv-feature-row:last-child {
  border-bottom: none;
}

.srv-feature-reverse .srv-feature-text {
  order: 2;
}

.srv-feature-reverse .srv-feature-image {
  order: 1;
}

.srv-feature-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.srv-feature-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.srv-feature-heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
  margin: 0;
}

.srv-feature-heading .srv-blue {
  color: var(--blue-lt);
}

.srv-feature-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

.srv-feature-cta {
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border: 1.5px solid var(--blue);
  padding: 10px 22px;
  border-radius: 8px;
  width: fit-content;
  transition: all 0.25s;
}

.srv-feature-cta:hover {
  background: var(--blue);
  color: #fff;
}

.srv-feature-image {
  border-radius: 20px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Feature illustration card */
.srv-feat-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 320px;
}

.srv-feat-expert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.srv-feat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  flex-shrink: 0;
}

.srv-feat-name {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.srv-feat-verified {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

.srv-fl {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
  margin-bottom: 6px;
}

.srv-fl-short { width: 55%; }
.srv-fl-mid   { width: 75%; }
.srv-fl-dark  { background: #CBD5E1; height: 10px; }

/* Score illustration */
.srv-feat-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.srv-feat-score-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-feat-score-circle span {
  position: absolute;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}

.srv-feat-score-bars {
  flex: 1;
}

.srv-score-b { margin-bottom: 8px; }

.srv-score-b span {
  font-family: var(--font-secondary);
  font-size: 9px;
  color: var(--gray);
  display: block;
  margin-bottom: 3px;
}

.srv-bar {
  height: 5px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.srv-bar-f {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 3px;
}

/* Profile check */
.srv-feat-doc { display: flex; flex-direction: column; gap: 10px; }

.srv-feat-doc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.srv-feat-profile-info { flex: 1; }

.srv-feat-check-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.srv-feat-check {
  width: 16px;
  height: 16px;
  background: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ══ PRICING ══ */
.srv-pricing {
  padding: 80px 32px;
  background: #fff;
}

.srv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.srv-price-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s;
}

.srv-price-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.srv-price-popular {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(29,78,216,0.12);
}

.srv-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.srv-price-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.srv-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.srv-price-original {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
}

.srv-price-amount {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
}

.srv-price-period {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--gray);
}

.srv-price-save {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 12px;
}

.srv-price-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.srv-price-btn {
  display: block;
  text-align: center;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  margin-bottom: 24px;
}

.srv-price-btn:hover,
.srv-price-popular .srv-price-btn {
  background: var(--blue);
  color: #fff;
}

.srv-price-features { 
  border-top: 1px solid var(--border); 
  padding-top: 20px;
}

.srv-features-label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.srv-price-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-family: var(--font-secondary);
  font-size: 13px;
  color: var(--dark);
  line-height: 1.5;
}

.srv-price-check {
  width: 18px;
  height: 18px;
  background: #DBEAFE;
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══ TESTIMONIALS ══ */
.srv-testimonials {
  background: var(--blue-bg);
  padding: 80px 32px;
}

.srv-testimonials-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.srv-carousel-track {
  display: flex;
  gap: 20px;
  flex: 1;
  overflow: hidden;
}

.srv-testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  flex: 1;
  min-width: 0;
  opacity: 0.65;
  transform: scale(0.97);
  transition: all 0.3s ease;
}

.srv-tc-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.srv-stars {
  font-size: 14px;
  margin-bottom: 16px;
}

.srv-testimonial-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.srv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.srv-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}

.srv-av-1 { background: linear-gradient(135deg,#F97316,#FB923C); }
.srv-av-2 { background: linear-gradient(135deg,#8B5CF6,#6366F1); }
.srv-av-3 { background: linear-gradient(135deg,#10B981,#0D9488); }

.srv-author-name {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.srv-author-role {
  font-family: var(--font-secondary);
  font-size: 12px;
  color: var(--gray);
}

.srv-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-carousel-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.srv-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.srv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: background 0.25s;
}

.srv-dot-active { background: var(--blue); }

/* ══ FAQ ══ */
.srv-faq {
  padding: 80px 32px;
  background: var(--blue-bg);
}

.srv-faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.srv-faq-item {
  border-bottom: 1px solid var(--border);
}

.srv-faq-question {
  font-family: var(--font-primary);
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.srv-faq-question:hover { color: var(--blue); }

.srv-faq-icon {
  font-size: 20px;
  color: var(--gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.srv-faq-item.active .srv-faq-icon {
  transform: rotate(180deg);
}

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

.srv-faq-item.active .srv-faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.srv-faq-answer p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ══ RESOURCES ══ */
.srv-resources {
  padding: 80px 32px;
  background: #fff;
}

.srv-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.srv-resource-card {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 
    transform 0.25s, 
    box-shadow 0.25s;
  display: block;
}

.srv-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.srv-resource-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--blue-bg);
}

.srv-resource-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.srv-resource-card:hover .srv-resource-img img {
  transform: scale(1.04);
}

/* Placeholder illustration */
.srv-resource-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-resource-mock {
  width: 85%;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
}

.srv-rm-header {
  height: 36px;
  background: linear-gradient(135deg, #DBEAFE, #EFF6FF);
  border-radius: 6px;
  margin-bottom: 10px;
}

.srv-rm-line {
  height: 7px;
  background: #E2E8F0;
  border-radius: 3px;
  margin-bottom: 5px;
}

.srv-rm-short { width: 65%; }

.srv-resource-content {
  padding: 20px;
}

.srv-resource-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
}

.srv-resource-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}

.srv-resource-link {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.srv-resources-btn-row {
  text-align: center;
  margin-top: 36px;
}

/* ══ FINAL CTA ══ */
.srv-final-cta {
  background: linear-gradient(160deg, var(--navy) 0%, #0D2862 100%);
  text-align: center;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}

/* Dot pattern overlay */
.srv-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255,255,255,0.04) 1px, 
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.srv-final-cta h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}

.srv-final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
  position: relative;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .srv-cards-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .srv-pricing-grid { 
    grid-template-columns: 1fr; 
    max-width: 400px; 
    margin-left: auto; 
    margin-right: auto;
  }
  .srv-steps-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .srv-step-arrow { 
    display: none; 
  }
  .srv-feature-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .srv-feature-reverse .srv-feature-text,
  .srv-feature-reverse .srv-feature-image {
    order: unset;
  }
}

@media (max-width: 768px) {
  .srv-listing-heading { font-size: 34px; }
  .srv-hero-heading    { font-size: 32px; }
  .srv-section-heading { font-size: 28px; }
  .srv-cards-grid { 
    grid-template-columns: 1fr; 
  }
  .srv-carousel-track {
    flex-direction: column;
  }
  .srv-testimonial-card {
    opacity: 1;
    transform: scale(1);
  }
  .srv-resources-grid { 
    grid-template-columns: 1fr; 
  }
  .srv-checks-row { 
    flex-direction: column; 
    align-items: center; 
  }
  .srv-hero { padding: 60px 20px 48px; }
  .srv-how-it-works,
  .srv-features,
  .srv-pricing,
  .srv-testimonials,
  .srv-faq,
  .srv-resources { padding: 60px 20px; }
  .srv-final-cta { padding: 60px 20px; }
  .srv-float-left,
  .srv-float-right-top,
  .srv-float-right-bottom { display: none; }
}

/* ════════════════════════════════════════════════
   v17 — GLOBAL FONT ENFORCEMENT + LAYOUT SAFETY
   Ensures every service detail page renders
   uniformly. Inter for headings/UI, Plus Jakarta
   Sans for body/descriptions. Prevents broken
   layouts on Resume Writing, Website Development
   and every other service page.
   ════════════════════════════════════════════════ */

body,
.srv-hero, .srv-hero *,
.srv-how-it-works, .srv-how-it-works *,
.srv-features, .srv-features *,
.srv-pricing, .srv-pricing *,
.srv-testimonials, .srv-testimonials *,
.srv-faq, .srv-faq *,
.srv-resources, .srv-resources *,
.srv-final-cta, .srv-final-cta * {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
}

/* Body / paragraph text → Plus Jakarta Sans */
.srv-hero-desc,
.srv-step-desc,
.srv-feature-body,
.srv-plan-desc,
.srv-plan-feature,
.srv-testimonial-text,
.srv-faq-answer,
.srv-resource-desc,
.srv-final-cta-desc,
.srv-check-item {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Headings → Inter */
.srv-hero-heading,
.srv-section-heading,
.srv-step-title,
.srv-feature-heading,
.srv-plan-name,
.srv-plan-price,
.srv-testimonial-name,
.srv-faq-question,
.srv-resource-title,
.srv-final-cta-heading,
.srv-btn-hero,
.srv-feature-cta,
.srv-btn-white {
  font-family: 'Inter', sans-serif !important;
}

/* ── LAYOUT-BREAK PROTECTION ── */
.srv-hero-inner { max-width: 760px; }

.srv-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.srv-feature-reverse .srv-feature-text  { order: 2; }
.srv-feature-reverse .srv-feature-image { order: 1; }

.srv-feature-image {
  min-height: 280px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}
.srv-feature-illustration { width: 100%; max-width: 360px; }
.srv-feat-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15,32,68,.08);
}

/* Pricing — equalize card heights */
.srv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.srv-plan-card { display: flex; flex-direction: column; height: 100%; }

/* Image safety */
.srv-features img,
.srv-resources img,
.srv-testimonials img { max-width: 100%; height: auto; display: block; }

/* Word-wrap safety to prevent overflow */
.srv-hero-heading,
.srv-section-heading,
.srv-feature-heading,
.srv-faq-question { overflow-wrap: break-word; word-wrap: break-word; }

/* Responsive — single column under 900px */
@media (max-width: 900px) {
  .srv-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .srv-feature-reverse .srv-feature-text,
  .srv-feature-reverse .srv-feature-image { order: unset; }
  .srv-pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .srv-hero-heading    { font-size: clamp(26px, 7vw, 32px); }
  .srv-section-heading { font-size: 26px; }
  .srv-feature-heading { font-size: 22px; }
  .srv-feature-image   { min-height: 220px; padding: 24px; }
}
