/* =====================================================================
   Service Hub Redesign — shared components
   Theme: teal #00414F / #0f2b2e, gold #FAC54B, font Poppins
   Used by: services-amazon.html, services-shopify.html,
            services-walmart.html, services-etsy.html, services-tiktok.html
   ===================================================================== */

.svcx-section { font-family: Poppins, sans-serif; }

/* ---------- Hero ---------- */
.svcx-hero {
  position: relative;
  background: linear-gradient(160deg, #0f414f 0%, #07272e 100%);
  padding: 170px 20px 90px;
  overflow: hidden;
}
.svcx-hero-bg {
  display: none;
}
.svcx-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.svcx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 197, 75, 0.14);
  border: 1px solid rgba(250, 197, 75, 0.35);
  color: #fac54b;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.svcx-hero-title {
  color: #fff;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 18px;
}
.svcx-hero-title span { color: #fac54b; }
.svcx-hero-text {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 26px;
}
.svcx-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.svcx-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 10px;
}
.svcx-trust-chip i { color: #fac54b; }
.svcx-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.svcx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fac54b;
  color: #0f2b2e;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.svcx-btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.25); }
.svcx-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color .2s ease, background .2s ease;
}
.svcx-btn-secondary:hover { border-color: #fac54b; background: rgba(250,197,75,0.08); }

/* Hero form card */
.svcx-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 70px rgba(2,6,23,0.35);
}
.svcx-form-card h4 {
  color: #0f2b2e;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}
.svcx-form-card p.svcx-form-sub {
  color: #5a6a6e;
  font-size: 13px;
  margin: 0 0 18px;
}
.svcx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svcx-form-grid.svcx-form-full { grid-template-columns: 1fr; }
.svcx-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.svcx-field label { font-size: 12px; font-weight: 600; color: #0f2b2e; }
.svcx-field input,
.svcx-field select,
.svcx-field textarea {
  border: 1px solid #e2e8ea;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #0f2b2e;
  background: #f8fafa;
  width: 100%;
  box-sizing: border-box;
}
.svcx-field textarea { resize: vertical; min-height: 70px; }
.svcx-field input:focus,
.svcx-field select:focus,
.svcx-field textarea:focus { outline: none; border-color: #fac54b; background: #fff; }
.svcx-form-submit {
  width: 100%;
  background: #00414f;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background .2s ease;
}
.svcx-form-submit:hover { background: #fac54b; color: #0f2b2e; }

@media (max-width: 900px) {
  .svcx-hero-inner { grid-template-columns: 1fr; }
  .svcx-hero-title { font-size: 32px; }
}

/* ---------- Services grid ---------- */
.svcx-services { background: #fff; padding: 80px 20px; }
.svcx-services-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.svcx-services-head h2 { color: #0f2b2e; font-size: 34px; font-weight: 700; margin: 14px 0 12px; }
.svcx-services-head p { color: #5a6a6e; font-size: 15px; line-height: 1.7; }
.svcx-services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svcx-service-card {
  background: #fff;
  border: 1px solid #eef1f1;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 10px 26px rgba(15,43,46,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svcx-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,43,46,0.12);
  border-color: rgba(250,197,75,0.5);
}
.svcx-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(250,197,75,0.15);
  color: #d99b1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.svcx-service-card h3 { color: #0f2b2e; font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.svcx-service-card p { color: #5a6a6e; font-size: 14px; line-height: 1.65; margin: 0; }
@media (max-width: 900px) { .svcx-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svcx-services-grid { grid-template-columns: 1fr; } }

/* ---------- Measurable growth (3 col bordered) ---------- */
.svcx-measurable { background: #fff; padding: 90px 20px 80px; }
.svcx-measurable-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.svcx-measurable-head h2 { color: #0f2b2e; font-size: 32px; font-weight: 700; margin: 0 0 12px; }
.svcx-measurable-head p { color: #5a6a6e; font-size: 15px; line-height: 1.7; }
.svcx-measurable-box {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #eef1f1;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 12px 34px rgba(15,43,46,0.06);
}
.svcx-measurable-item { padding: 34px 30px; border-right: 1px solid #eef1f1; }
.svcx-measurable-item:last-child { border-right: none; }
.svcx-measurable-item h3 { color: #0f2b2e; font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.svcx-measurable-item p { color: #5a6a6e; font-size: 13.5px; line-height: 1.65; margin: 0; }
@media (max-width: 900px) {
  .svcx-measurable-box { grid-template-columns: 1fr; }
  .svcx-measurable-item { border-right: none; border-bottom: 1px solid #eef1f1; }
  .svcx-measurable-item:last-child { border-bottom: none; }
}

/* ---------- Strategy row (2 col text + dark CTA card) ---------- */
.svcx-strategy { background: #fff; padding: 10px 20px 80px; }
.svcx-strategy-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
}
.svcx-strategy-card {
  background: #fff;
  border: 1px solid #eef1f1;
  border-radius: 20px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  box-shadow: 0 12px 34px rgba(15,43,46,0.06);
}
.svcx-strategy-card h4 { color: #0f2b2e; font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.svcx-strategy-card p { color: #5a6a6e; font-size: 13.5px; line-height: 1.65; margin: 0; }
.svcx-strategy-col + .svcx-strategy-col { border-left: 1px solid #eef1f1; padding-left: 30px; }
.svcx-strategy-cta {
  background: linear-gradient(160deg, #0f2b2e, #07393b);
  border-radius: 20px;
  padding: 34px 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svcx-strategy-cta h4 { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 12px; }
.svcx-strategy-cta p { color: rgba(255,255,255,0.78); font-size: 13.5px; line-height: 1.65; margin: 0 0 20px; }
@media (max-width: 900px) {
  .svcx-strategy-grid { grid-template-columns: 1fr; }
  .svcx-strategy-card { grid-template-columns: 1fr; }
  .svcx-strategy-col + .svcx-strategy-col { border-left: none; padding-left: 0; border-top: 1px solid #eef1f1; padding-top: 24px; }
}

/* ---------- Partner / certification strip ---------- */
.svcx-partner { background: #fff; padding: 0 20px 70px; }
.svcx-partner-card {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #eef1f1;
  border-radius: 20px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  gap: 26px;
  box-shadow: 0 12px 34px rgba(15,43,46,0.06);
  flex-wrap: wrap;
}
.svcx-partner-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #f6f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00414f;
  flex-shrink: 0;
}
.svcx-partner-text { flex: 1; min-width: 240px; }
.svcx-partner-text h4 { color: #0f2b2e; font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.svcx-partner-text p { color: #5a6a6e; font-size: 13.5px; line-height: 1.6; margin: 0; }
.svcx-partner-link { color: #00414f; font-weight: 700; font-size: 13px; text-decoration: none; white-space: nowrap; }
.svcx-partner-link:hover { color: #d99b1f; }

/* ---------- New-seller / already-selling split sections ---------- */
.svcx-split { background: #fff; padding: 60px 20px; }
.svcx-split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,197,75,0.15);
  color: #a97615;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.svcx-split-eyebrow i { color: #fac54b; font-size: 8px; }
.svcx-split-centered { max-width: 860px; margin: 0 auto; text-align: center; }
.svcx-split-centered h2 { color: #0f2b2e; font-size: 30px; font-weight: 700; margin: 0 0 16px; line-height: 1.3; }
.svcx-split-centered h2 span { color: #d99b1f; }
.svcx-split-centered p { color: #5a6a6e; font-size: 15px; line-height: 1.75; }

.svcx-split-cols {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.svcx-split-cols h2 { color: #0f2b2e; font-size: 30px; font-weight: 700; margin: 0 0 16px; line-height: 1.3; }
.svcx-split-cols p { color: #5a6a6e; font-size: 15px; line-height: 1.75; margin: 0 0 14px; }
.svcx-split-img { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(15,43,46,0.18); }
.svcx-split-img img { width: 100%; height: 340px; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .svcx-split-cols { grid-template-columns: 1fr; }
  .svcx-split-cols .svcx-split-img { order: -1; }
}

/* ---------- Stats bar ---------- */
.svcx-stats { padding: 0 20px 80px; background: #fff; }
.svcx-stats-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(120deg, #00414f, #0f2b2e);
  border-radius: 22px;
  padding: 40px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15,43,46,0.22);
}
.svcx-stat-num { color: #fac54b; font-size: 34px; font-weight: 800; margin: 0 0 6px; }
.svcx-stat-label { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
@media (max-width: 900px) { .svcx-stats-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svcx-stats-bar { grid-template-columns: 1fr; } }
