/* ============================================================
   TechEin — Shared Page Styles (Phase 3 Service Pages)
   ============================================================ */

/* ----- HERO BASE ----- */
.pg-hero {
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
}
.pg-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}
.pg-hero .sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 34px;
}

/* ----- BADGE ----- */
.pg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.pg-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: bdot 2s infinite;
}
@keyframes bdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* ----- BUTTONS ----- */
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  border: none;
}
.pg-btn:hover { text-decoration: none; transform: translateY(-2px); }
.pg-btn-outline {
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  text-decoration: none;
  transition: all .3s;
}
.pg-btn-outline:hover { border-color: rgba(255,255,255,.8); color: #fff; text-decoration: none; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ----- TRUST BAR ----- */
.trust-bar {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  margin-top: 6px;
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
}
.trust-bar .ck { color: #34d399; font-weight: 700; }

/* ----- STAT STRIP ----- */
.stat-strip { padding: 52px 0; }
.stat-box { text-align: center; padding: 0 20px; }
.stat-box .num { font-size: 44px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 7px; }
.stat-box .lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ----- SECTION UTILITIES ----- */
.sec { padding: 88px 0; }
.sec-grey { padding: 88px 0; background: #f8f9ff; }
.sec-white { padding: 88px 0; background: #fff; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sec-title h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #1e1b4b;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sec-title p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 580px;
}
.sec-title.c { text-align: center; }
.sec-title.c p { margin: 0 auto; }

/* ----- CARDS ----- */
.svc-card {
  background: #fff;
  border: 1px solid #e5e7f5;
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all .3s;
}
.svc-card:hover {
  box-shadow: 0 14px 44px rgba(99,102,241,.12);
  transform: translateY(-4px);
}
.svc-card .ico { font-size: 30px; display: block; margin-bottom: 14px; }
.svc-card h4 { font-size: 17px; font-weight: 700; color: #1e1b4b; margin-bottom: 9px; }
.svc-card p { font-size: 14px; color: #6b7280; line-height: 1.65; margin: 0; }
.svc-card ul { list-style: none; padding: 0; margin: 10px 0 0; }
.svc-card ul li {
  font-size: 13px;
  color: #374151;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.svc-card ul li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }

/* ----- SKILLS / TECH TAGS ----- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8f9ff;
  border: 1px solid #e5e7f5;
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin: 3px;
  transition: all .2s;
  cursor: default;
}
.tag img { width: 20px; height: 20px; object-fit: contain; }

/* ----- HIRE MODEL CARDS ----- */
.hire-card {
  background: #fff;
  border: 2px solid #e5e7f5;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  height: 100%;
  transition: all .3s;
  position: relative;
}
.hire-card.featured { border-width: 2px; }
.hire-card:hover { transform: translateY(-5px); }
.hire-card .hc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.hire-card h4 { font-size: 20px; font-weight: 800; color: #1e1b4b; margin-bottom: 8px; }
.hire-card .rate { font-size: 26px; font-weight: 800; margin: 12px 0 4px; }
.hire-card .rate-sub { font-size: 13px; color: #9ca3af; margin-bottom: 20px; }
.hire-card ul { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.hire-card ul li {
  font-size: 14px;
  color: #374151;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.hire-card ul li::before { content: '✓'; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  color: #fff;
}

/* ----- PROCESS STEPS ----- */
.step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 0;
}
.step-num {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step-card h5 { font-size: 16px; font-weight: 700; color: #1e1b4b; margin: 0 0 5px; }
.step-card p { font-size: 13.5px; color: #6b7280; line-height: 1.6; margin: 0; }

/* ----- FAQ ----- */
.faq-item {
  border: 1px solid #e5e7f5;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #1e1b4b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color .2s;
}
.faq-btn .arr {
  min-width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-btn[aria-expanded="true"] .arr { transform: rotate(45deg); }
.faq-ans { padding: 0 22px 18px; font-size: 14px; color: #6b7280; line-height: 1.75; }

/* ----- CTA SECTION ----- */
.pg-cta {
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  border-radius: 50%;
}
.pg-cta h2 { color: #fff; font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; margin-bottom: 14px; }
.pg-cta p { color: rgba(255,255,255,.75); font-size: 17px; max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.cta-trust { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.cta-trust span { font-size: 13px; display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); }
.cta-trust .ck { color: #34d399; }

/* ----- GRADIENT TEXT ----- */
.gt-indigo { background: linear-gradient(135deg,#6366f1,#8b5cf6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.gt-blue { background: linear-gradient(135deg,#3b82f6,#6366f1); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.gt-green { background: linear-gradient(135deg,#059669,#34d399); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.gt-orange { background: linear-gradient(135deg,#ea580c,#fb923c); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  .pg-hero { padding: 100px 0 60px; }
  .btn-row { flex-direction: column; align-items: flex-start; }
  .pg-btn, .pg-btn-outline { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .trust-bar { gap: 12px; }
  .stat-box .num { font-size: 36px; }
}
