:root {
  --pp-navy: #081a39;
  --pp-orange: #2563eb;
  --pp-orange-dark: #1d4ed8;
  --pp-bg-soft: #f8fafc;
  --pp-border: #e7eaf0;
  --pp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  font-family: var(--font-body, "Segoe UI", sans-serif);
}

body h1,
body h2,
body h3,
body h4 {
  font-family: var(--font-display, "Segoe UI", sans-serif);
}

/*==========================
SHARED SECTION RHYTHM
==========================*/

.pt-product-hero,
.pt-pipeline-section,
.pt-services,
.pt-stats,
.pt-product-cta {
  padding: 70px 0;
}

/*==========================
BREADCRUMB
==========================*/

.pt-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--pp-navy);
  margin-bottom: 26px;
}

.pt-breadcrumb a {
  color: var(--pp-navy);
  text-decoration: none;
  transition: color 0.25s var(--pp-ease);
}

.pt-breadcrumb a:hover {
  color: var(--pp-orange);
}

.pt-breadcrumb i {
  font-size: 10px;
  color: #c7ccd6;
}

.pt-breadcrumb span {
  color: var(--pp-navy);
  font-weight: 600;
}

/*==========================
HERO
==========================*/

.pt-product-hero {
  padding: 130px 0 60px;
  background: var(--pp-bg-soft);
  position: relative;
  overflow: hidden;
}

.pt-product-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.08),
    rgba(37, 99, 235, 0) 70%
  );
  top: -280px;
  right: -140px;
  pointer-events: none;
}

.pt-product-hero .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.pt-product-hero-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #eff6ff;
  color: var(--pp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 24px;
}

.pt-product-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--pp-navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.pt-product-hero-tagline {
  font-size: 17px;
  line-height: 1.75;
  color: var(--pp-navy);
  max-width: 620px;
  margin-bottom: 32px;
}

.pt-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/*==========================
BUTTONS (scoped fallback — safe even if
the base template's .cd-btn isn't loaded)
==========================*/

.pt-hero-actions .cd-btn,
.pt-product-cta .cd-btn {
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s var(--pp-ease);
}

.pt-hero-actions .btn-primary.solid,
.pt-product-cta .btn-primary.solid {
  background: var(--pp-navy);
  color: #fff;
  box-shadow: 0 12px 26px rgba(8, 26, 57, 0.18);
}

.pt-hero-actions .btn-primary.solid:hover,
.pt-product-cta .btn-primary.solid:hover {
  background: var(--pp-orange);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.24);
}

.pt-hero-actions .btn-primary.white {
  background: #fff;
  border: 1px solid #d0d5dd;
  color: var(--pp-navy);
}

.pt-hero-actions .btn-primary.white:hover {
  border-color: var(--pp-orange);
  color: var(--pp-orange);
  text-decoration: none;
  transform: translateY(-3px);
}

/*==========================
PIPELINE STRIP (used on ATS; optional
elsewhere any product has a clear staged flow)
==========================*/

.pt-pipeline-section {
  padding: 0 0 60px;
  background: var(--pp-bg-soft);
}

.pt-pipeline {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 18px;
  padding: 24px 32px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.pt-pipeline-stage {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pt-pipeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--pp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.pt-pipeline-stage:last-child .pt-pipeline-dot {
  background: var(--pp-navy);
  color: #fff;
}

.pt-pipeline-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pp-navy);
  white-space: nowrap;
}

.pt-pipeline-connector {
  flex: 0 0 auto;
  width: 36px;
  height: 1px;
  background: var(--pp-border);
  margin: 0 4px;
}

/*==========================
SECTION HEADS (eyebrow + title, centered)
==========================*/

.pt-services,
.pt-stats {
  text-align: center;
}

.pt-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  padding: 7px 15px;
  background: #eff6ff;
  color: var(--pp-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 50px;
  margin-bottom: 14px;
}

.pt-section-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.pt-section-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--pp-navy);
  letter-spacing: -0.3px;
  margin-bottom: 40px;
}

.pt-section-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pp-navy);
  max-width: 640px;
  margin: -22px auto 36px;
}

/*==========================
SERVICE / FEATURE GRID
(Why Choose, Key Features, Industries-adjacent)
==========================*/

.pt-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.pt-service-card {
  height: 100%;
}

.pt-service-card-inner {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
  transition:
    transform 0.35s var(--pp-ease),
    box-shadow 0.35s var(--pp-ease),
    border-color 0.35s var(--pp-ease);
}

.pt-service-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

.pt-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--pp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 16px;
  transition: transform 0.35s var(--pp-ease);
}

.pt-service-card-inner:hover .pt-service-icon {
  transform: scale(1.08) rotate(-4deg);
}

.pt-service-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.pt-service-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--pp-navy);
  margin: 0;
}

/*==========================
STATS / FEATURE-ROW GRID
(Customer Experience, Business Benefits, Why Pratyin)
==========================*/

.pt-stats {
  background: var(--pp-bg-soft);
}

.pt-stats-grid,
.pt-feature-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}

.pt-stat-card {
  height: 100%;
}

.pt-stat-card-inner {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  padding: 20px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    transform 0.3s var(--pp-ease),
    box-shadow 0.3s var(--pp-ease);
}

.pt-stat-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.pt-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--pp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.pt-stat-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--pp-navy);
  line-height: 1.5;
}

/*==========================
TAG LIST (Industries)
==========================*/

.pt-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pt-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pp-navy);
  transition: 0.3s var(--pp-ease);
}

.pt-tag-chip:hover {
  border-color: var(--pp-orange);
  color: var(--pp-orange);
  transform: translateY(-2px);
}

.pt-tag-chip i {
  color: var(--pp-orange);
}

/*==========================
CTA
==========================*/

.pt-product-cta {
  background: #fff;
}

.pt-product-cta .container {
  background: var(--pp-navy);
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 900px;
}

.pt-product-cta .container::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  top: -110px;
  right: -70px;
}

.pt-product-cta h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.pt-product-cta p {
  font-size: 16px;
  color: #fff;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.pt-product-cta .cd-btn {
  position: relative;
  z-index: 1;
}

/*==========================
HERO PROOF LINE (shared across product pages)
The icon stack + caption sit in a flex row. Without wrapping and a
zero min-width, the caption stays on a single line and forces the
hero column — and the whole page — wider than small viewports.
==========================*/

.pt-hero-proof {
  flex-wrap: wrap;
}

.pt-hero-proof span {
  min-width: 0;
}

.pt-hero-copy h1,
.pt-product-hero h1 {
  overflow-wrap: break-word;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width: 991px) {
  .pt-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-stats-grid,
  .pt-feature-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-pipeline {
    flex-wrap: wrap;
    gap: 14px 0;
  }

  .pt-pipeline-connector {
    display: none;
  }

  .pt-pipeline-stage {
    flex: 0 0 50%;
  }
}

@media (max-width: 575px) {
  .pt-product-hero {
    padding: 110px 0 40px;
  }

  .pt-product-hero h1 {
    font-size: 28px;
  }

  .pt-service-grid,
  .pt-stats-grid,
  .pt-feature-row-grid {
    grid-template-columns: 1fr;
  }

  .pt-product-cta {
    padding: 40px 24px;
  }

  .pt-hero-actions {
    flex-direction: column;
  }
}
/* Push hero text down below the fixed header on small screens */
@media (max-width: 767px) {
  .cd-hero-slider li .cd-full-width,
  .cd-hero-slider li .cd-half-width {
    padding-top: 90px; /* match your mobile header's actual rendered height */
  }
}

@media (max-width: 375px) {
  .cd-hero-slider li .cd-full-width,
  .cd-hero-slider li .cd-half-width {
    padding-top: 100px;
  }
}
:root {
  --header-h-mobile: 88px; /* update to match real measured height */
}
@media (max-width: 767px) {
  .cd-full-width,
  .cd-half-width {
    padding-top: var(--header-h-mobile);
  }
}
