

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0 90px; }
.page-hero::before {
  content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,.35), transparent 70%); top: -220px; right: -160px;
}
.page-hero::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,156,16,.22), transparent 70%); bottom: -200px; left: -140px;
}
.page-hero .container { position: relative; z-index: 2; text-align: center }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.8) }
.breadcrumb a:hover { color: var(--warm) }
.page-hero .sec-tag { background: rgba(255,255,255,.1); color: #fff }
.page-hero h1 {
  font-family: 'Manrope', sans-serif; font-weight: 500; font-size: clamp(32px, 5vw, 52px);
  color: #fff; line-height: 1.2; margin-bottom: 18px;
}
.page-hero h1 em {
  font-family: 'Dancing Script', sans-serif; font-style: normal;
  background: linear-gradient(135deg, #ffd874, #91c82B); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero p { color: rgba(255,255,255,.7); max-width: 620px; margin: 0 auto; font-size: 16px; line-height: 1.75; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 36px; flex-wrap: wrap }
.hero-stats div { text-align: center }
.hero-stats strong { display: block; font-family: 'Manrope', sans-serif; font-size: 26px; font-weight: 800; color: #fff }
.hero-stats span { font-size: 12.5px; color: rgba(255,255,255,.55); font-weight: 600 }

/* ── SERVICE CARDS (HUB) ── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.svc-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 26px;
  padding: 40px; transition: .25s; position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,16,46,.1) }
.svc-num { position: absolute; top: 28px; right: 32px; font-family: 'Manrope', sans-serif; font-size: 42px; font-weight: 800; color: var(--border); }
.svc-icon {
  width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; margin-bottom: 22px;
}
.svc-card:nth-child(1) .svc-icon { background: var(--grad-blue) }
.svc-card:nth-child(2) .svc-icon { background: var(--grad-warm) }
.svc-card:nth-child(3) .svc-icon { background: var(--grad-green) }
.svc-card:nth-child(4) .svc-icon { background: var(--grad-brand) }
.svc-card h3 { font-family: 'Manrope', sans-serif; font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.svc-card p.desc { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 20px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.svc-tags span { background: var(--surface); border: 1px solid var(--border); color: var(--navy); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 100px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--blue); }
.svc-link span.arrow { transition: .2s }
.svc-card:hover .svc-link span.arrow { transform: translateX(4px) }

/* ── SUB-SERVICES (DETAIL PAGE) ── */
.sub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.sub-item {
  display: flex; align-items: flex-start; gap: 14px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px; transition: .2s;
}
.sub-item:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(0,16,46,.06) }
.sub-item .chk {
  width: 30px; height: 30px; min-width: 30px; border-radius: 9px; background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}
.sub-item p { font-weight: 600; font-size: 14.5px; }

/* ── OUTCOME BANNER ── */
.outcome-banner {
  background: var(--grad-brand); border-radius: 24px; padding: 40px 44px; display: flex;
  align-items: center; gap: 24px; color: #fff;
}
.outcome-banner .ic { font-size: 34px; }
.outcome-banner h4 { font-family: 'Manrope', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; opacity: .85; margin-bottom: 6px; }
.outcome-banner p { font-size: 17px; font-weight: 600; line-height: 1.5; }

/* ── PROCESS STEPS ── */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; position: relative; padding-bottom: 44px; }
.process-item:last-child { padding-bottom: 0 }
.process-num {
  width: 64px; height: 64px; border-radius: 18px; background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif;
  font-size: 22px; font-weight: 800; position: relative; z-index: 2;
}
.process-item:not(:last-child)::before {
  content: ''; position: absolute; left: 31px; top: 64px; bottom: -8px; width: 2px;
  background: var(--border); z-index: 1;
}
.process-content { background: var(--card-bg); border: 1px solid var(--border); border-radius: 18px; padding: 26px 28px; }
.process-content .step-tag { color: var(--blue); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.process-content h4 { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-content p { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 14px; }
.process-deliverable {
  display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border-radius: 100px;
  padding: 8px 16px; font-size: 12.5px; font-weight: 700; color: var(--navy);
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: none; text-align: left; font-weight: 700; font-size: 15px; color: var(--navy);
}
.faq-q .plus { font-size: 20px; color: var(--blue); transition: .25s; min-width: 20px; text-align: center; }
.faq-item.open .faq-q .plus { transform: rotate(45deg) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 22px; color: var(--text-muted); font-size: 14.5px; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px }

/* ── OTHER SERVICES STRIP ── */
.other-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.other-svc-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 18px; padding: 26px;
  transition: .2s; display: flex; flex-direction: column; gap: 10px;
}
.other-svc-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 16px 36px rgba(0,16,46,.07) }
.other-svc-card .ic { font-size: 22px }
.other-svc-card h5 { font-family: 'Manrope', sans-serif; font-size: 15.5px; font-weight: 700; }
.other-svc-card span.go { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ── STATS STRIP ── */
.stats-sec { background: var(--navy); position: relative; overflow: hidden; }
.stats-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(26,111,212,.25), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(232,156,16,.18), transparent 55%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid .num {
  font-family: 'Manrope', sans-serif; font-size: clamp(32px, 4vw, 44px); font-weight: 800;
  background: linear-gradient(135deg, #ffd874, #91c82B); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.stats-grid .lbl { color: rgba(255,255,255,.6); font-size: 13.5px; font-weight: 600; margin-top: 6px }

/* ── CTA ── */
.cta-sec { background: var(--grad-brand); border-radius: 32px; padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-sec h2 { font-family: 'Manrope', sans-serif; color: #fff; font-size: clamp(26px, 4vw, 38px); font-weight: 600; margin-bottom: 14px; }
.cta-sec p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 32px; font-size: 15.5px }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap }
.cta-btns .btn-g { background: #fff; color: var(--navy) }
.cta-btns .btn-g:hover { box-shadow: 0 12px 32px rgba(0,0,0,.2) }


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pad { padding: 72px 0 }
  .svc-grid, .sub-grid, .other-svc-grid { grid-template-columns: repeat(2, 1fr) }
  .other-svc-grid { grid-template-columns: 1fr 1fr }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px }
  .nav-links, .nav-cta:not(.mobile-menu .nav-cta) { display: none }
  .nav-toggle { display: flex }
  .outcome-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .pad { padding: 56px 0 }
  .container { padding: 0 20px }
  .page-hero { padding: 56px 0 64px }
  .svc-grid, .sub-grid, .other-svc-grid { grid-template-columns: 1fr }
  .topbar-right { gap: 14px }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 6px }
  .cta-sec { padding: 48px 24px; border-radius: 24px }
  .process-item { grid-template-columns: 52px 1fr; gap: 16px }
  .process-num { width: 52px; height: 52px; font-size: 18px; border-radius: 14px }
  .process-item:not(:last-child)::before { left: 25px }
  .hero-stats { gap: 24px }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px }
  .footer-grid { grid-template-columns: 1fr; gap: 28px }
  .nav-logo img { width: 150px }
  .sec-title { font-size: clamp(24px, 6vw, 32px) }
  .page-hero h1 { font-size: clamp(26px, 7vw, 38px) }
  .cta-btns { flex-direction: column; width: 100% }
  .cta-btns a { width: 100%; justify-content: center }
  .footer-bottom { flex-direction: column; align-items: flex-start }
  .svc-card { padding: 28px }
  .outcome-banner { padding: 28px }
}
