/* SERVICES PAGE — original inline CSS */
/* ══════════════════════════════════════════════════════════ */
/* ── PAGE-SPECIFIC ADDITIONS (no :root override — inherits styles.css) ── */

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* HERO FEATURED SERVICE                    */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.hero-service {
  padding: 5.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.hero-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(43, 102, 230, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 4rem;
}
.hero-svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.hero-svc-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-svc-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero-svc-h1 .hl {
  background: linear-gradient(135deg, var(--accent), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-svc-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-svc-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-svc-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-2);
}
.hero-svc-trust .stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* HERO SERVICE PROOF CARD                  */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.hero-proof-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.hero-proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #5b8fff 100%);
}
.proof-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.proof-metric {
  text-align: center;
  padding: 1rem;
  background: var(--bg-3);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.proof-metric-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.proof-metric-lbl {
  font-size: 0.68rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.proof-client-result {
  background: var(--bg-3);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.pcr-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}
.pcr-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pcr-text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}
.pcr-client {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.35rem;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SECTION TITLE OVERRIDES                  */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.svc-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.svc-section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* SERVICE CARDS GRID                       */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.services-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.svc-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card.ac-blue::before {
  background: var(--accent);
}
.svc-card.ac-green::before {
  background: var(--green);
}
.svc-card.ac-cjxblue::before {
  background: var(--amber);
}
.svc-card.ac-purple::before {
  background: #8b5cf6;
}
.svc-card.ac-cyan::before {
  background: var(--accent);
}
.svc-card.ac-red::before {
  background: var(--red);
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.ac-blue .svc-icon {
  background: rgba(43, 102, 230, 0.12);
  color: var(--accent);
  border: 1px solid rgba(43, 102, 230, 0.2);
}
.ac-green .svc-icon {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.ac-cjxblue .svc-icon {
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.ac-purple .svc-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.ac-cyan .svc-icon {
  background: rgba(6, 182, 212, 0.12);
  color: #67e8f9;
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.ac-red .svc-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.svc-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.svc-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.svc-plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(43, 102, 230, 0.08);
  border: 1px solid rgba(43, 102, 230, 0.2);
  color: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.svc-features {
  list-style: none;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.svc-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.865rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.svc-features li:last-child {
  border-bottom: none;
}
.svc-features li i {
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ac-blue .svc-features li i,
.ac-green .svc-features li i,
.ac-cjxblue .svc-features li i,
.ac-purple .svc-features li i,
.ac-cyan .svc-features li i,
.ac-red .svc-features li i {
  color: var(--green);
}
.svc-delivery {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: auto;
}
.svc-cta:hover {
  background: rgba(43, 102, 230, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.svc-cta:hover i {
  transform: translateX(4px);
}
.svc-cta i {
  font-size: 0.75rem;
  transition: transform 0.25s;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* VS SECTION                               */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.vs-section {
  padding: 5rem 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.vs-col {
  padding: 2rem 2.25rem;
}
.vs-col.theirs {
  background: var(--bg-2);
}
.vs-col.ours {
  background: var(--bg-4);
}
.vs-col-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.vs-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.vs-badge.bad {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.vs-badge.good {
  background: rgba(43, 102, 230, 0.12);
  color: var(--accent);
  border: 1px solid rgba(43, 102, 230, 0.2);
}
.vs-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}
.vs-row:last-child {
  border-bottom: none;
}
.vs-row strong {
  color: var(--text);
}
.bad-i {
  color: #f87171;
  flex-shrink: 0;
  margin-top: 2px;
}
.good-i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PROOF STATS                              */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.proof-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.ps-cell {
  background: var(--bg-2);
  padding: 1.5rem 1rem;
  text-align: center;
}
.ps-val {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.ps-lbl {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* PLANS BUNDLE                             */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.bundle-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.bundle-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.bundle-card:hover {
  transform: translateY(-4px);
}
.bundle-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #0d1628 0%, #0a0c10 100%);
  box-shadow: var(--blue-glow-lg);
}
.bundle-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(43, 102, 230, 0.4);
}
.bundle-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.bundle-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bundle-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-3);
}
.bundle-from {
  font-size: 0.72rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.bundle-divider {
  height: 1px;
  background: var(--border);
  margin: 0.85rem 0;
}
.bundle-includes {
  list-style: none;
}
.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: var(--text-2);
  padding: 0.3rem 0;
}
.bundle-includes li .bi-yes {
  color: var(--green);
}
.bundle-includes li .bi-no {
  color: var(--text-3);
}
.bundle-cta {
  margin-top: 1.25rem;
  width: 100%;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* TESTIMONIALS                             */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.testi-section {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.testi-card:hover {
  border-color: rgba(43, 102, 230, 0.25);
  transform: translateY(-3px);
}
.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.testi-result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
  padding: 0.2rem 0.7rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-3);
}
.testi-verify {
  font-size: 0.7rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
  text-decoration: none;
}
.testi-verify:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* BOTTOM CTA                               */
/* ============================================ */
/* ============================================ */
/* ============================================ */
.bottom-cta {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse at center top,
    rgba(43, 102, 230, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.bottom-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bottom-cta p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta-guarantee {
  font-size: 0.8rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
.cta-guarantee i {
  color: var(--green);
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* RESPONSIVE                               */
/* ============================================ */
/* ============================================ */
/* ============================================ */
@media (max-width: 1024px) {
  .hero-service-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bundle-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .proof-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .vs-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-svc-h1 {
    font-size: 2rem;
  }
  .bottom-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bottom-cta-actions .btn {
    justify-content: center;
  }
  .proof-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .proof-stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   SERVICES — Mobile Optimisation Layer v4.0
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Stack hero content — already handled at 1024px, but reduce gap */
  .hero-service {
    padding-top: 72px;
  }
  .hero-service-inner {
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  /* Hero CTA buttons — full-width on mobile */
  .hero-svc-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-svc-btns .btn {
    justify-content: center;
    text-align: center;
  }

  /* Proof card — metric row */
  .proof-metric-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Section level spacing */
  .services-section {
    padding: 4rem 0;
  }
  .bundle-section {
    padding: 4rem 0;
  }
  .testi-section {
    padding: 4rem 0;
  }
  .faq-section {
    padding: 4rem 0;
  }
  .bottom-cta {
    padding: 4.5rem 0;
  }
}

/* ── 480px FINE-TUNE ─────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero heading */
  .hero-svc-h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.1rem);
  }

  /* Proof card layout */
  .hero-proof-card {
    padding: 1.25rem;
  }
  .proof-metric-num {
    font-size: 1.3rem;
  }
  .proof-metric-row {
    gap: 0.6rem;
  }

  /* Reduce all section padding */
  .services-section {
    padding: 3.25rem 0;
  }
  .bundle-section {
    padding: 3.25rem 0;
  }
  .testi-section {
    padding: 3.25rem 0;
  }
  .faq-section {
    padding: 3.25rem 0;
  }

  /* Service card — compact */
  .svc-card {
    padding: 1.5rem;
  }

  /* Bundle card */
  .bundle-card {
    padding: 1.5rem;
  }

  /* Testimonial card */
  .testi-card {
    padding: 1.25rem;
  }

  /* Stats proof bar */
  .proof-stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── 375px FINE-TUNE ─────────────────────────────────────────── */
@media (max-width: 375px) {
  .hero-svc-h1 {
    font-size: 1.65rem;
  }
  .hero-svc-sub {
    font-size: 0.9rem;
  }
  .proof-metric-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }
  .proof-metric-num {
    font-size: 1.1rem;
  }
  .proof-metric {
    padding: 0.75rem 0.5rem;
  }
  .svc-card {
    padding: 1.25rem;
  }
  /* Trust line wraps cleanly */
  .hero-svc-trust {
    gap: 0.75rem;
  }
}
/* ══════════════════════════════════════════════════════════════ */
