
:root {
  /* ── Brand colours (matching live pps + gg pages) ── */
  --pt-brand: #0d838d;
  --pt-brand-light: #52bac5;
  --pt-brand-dark: #0a6b74;
  --pt-brand-glow: rgba(13, 131, 141, 0.28);
  --pt-amber: #ffbe2b;
  --pt-amber-dark: #e6a800;
  --pt-amber-glow: rgba(255, 190, 43, 0.35);

  /* ── Neutrals ── */
  --pt-navy: #2e3e58;
  --pt-dark: #1a2333;
  --pt-dark2: #0f1720;
  --pt-white: #ffffff;
  --pt-off: #ebf1f8; /* exact pps section bg */
  --pt-off2: #dde6f0;
  --pt-border: #cdd9e8;
  --pt-text: #1e2d3d;
  --pt-text-2: #4a6078;
  --pt-text-3: #7f96ae;

  /* ── Typography ── */
  --pt-font: "Inter", system-ui, -apple-system, sans-serif;
  --pt-font-h: "Plus Jakarta Sans", "Inter", sans-serif;

  /* ── Shape & motion ── */
  --pt-r: 14px;
  --pt-r-lg: 22px;
  --pt-r-xl: 30px;
  --pt-sh: 0 2px 16px rgba(30, 45, 61, 0.07);
  --pt-sh-lg: 0 12px 48px rgba(30, 45, 61, 0.13);
  --pt-sh-xl: 0 24px 80px rgba(30, 45, 61, 0.18);
  --pt-max: 1180px;
  --pt-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --pt-t: 0.28s var(--pt-ease);
}

.ptPageContainer {
  font-family: var(--pt-font);
  font-size: 16px;
  color: var(--pt-text);
  -webkit-font-smoothing: antialiased;
}

/* ─── INNER CONTAINERS ─── */
.ptHeroSection,
.ptFvtSectionInner,
.ptHiwSectionInner,
.ptPfSectionInner,
.ptDfdSectionInner,
.ptCapSectionInner,
.ptCasSectionInner,
.ptListSectionInner,
.ptGarSectionInner,
.ptGarInnerSection,
.ptFeatSectionInner,
.ptPrsSectionInner,
.ptSupSectionInner {
  max-width: var(--pt-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ═══════════════════════════════════════════
   HERO  — dark navy, teal glow, amber CTA
═══════════════════════════════════════════ */
.ptHeroWrapper {
  background: linear-gradient(
    145deg,
    var(--pt-dark2) 0%,
    var(--pt-dark) 45%,
    #162440 100%
  );
  position: relative;
  overflow: hidden;
}
.ptHeroWrapper::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 131, 141, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.ptHeroWrapper::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 131, 141, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ptHeroSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 96px;
  padding-inline: 24px;
  max-width: var(--pt-max);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

/* Badge */
.ptHeroBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(13, 131, 141, 0.16);
  border: 1px solid rgba(13, 131, 141, 0.38);
  color: #6dd4dc;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.ptHeroBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pt-brand-light);
  box-shadow: 0 0 8px var(--pt-brand-light);
  animation: ptPulse 2s infinite;
}
@keyframes ptPulse {
  0%,
  100% {
    box-shadow: 0 0 6px var(--pt-brand-light);
  }
  50% {
    box-shadow: 0 0 14px var(--pt-brand-light);
  }
}

/* Title */
.ptHeroSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--pt-white);
  margin-bottom: 22px;
}
.ptHeroSectionTitle span {
  background: linear-gradient(90deg, var(--pt-brand-light) 0%, #a0eaf3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ptHeroSectionSubtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 480px;
}

.ptHeroCtaRow {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

/* ── CTA Buttons — amber primary, ghost secondary ── */
.ptBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pt-amber);
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 6px 24px var(--pt-amber-glow);
  transition: var(--pt-t);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ptBtnPrimary:hover {
  background: var(--pt-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 190, 43, 0.5);
  color: #1a1a1a;
}
.ptBtnPrimary svg {
  width: 16px;
  height: 16px;
}

.ptBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 40px;
  transition: var(--pt-t);
  white-space: nowrap;
}
.ptBtnGhost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--pt-white);
}
.ptBtnGhost svg {
  width: 16px;
  height: 16px;
}

/* Rating row */
.ptHeroRatingRow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ptHeroStars {
  display: flex;
  gap: 3px;
}
.ptHeroStars svg {
  width: 16px;
  height: 16px;
  fill: var(--pt-amber);
  color: var(--pt-amber);
}
.ptHeroRatingText {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.ptHeroRatingText strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ── Hero Pricing Mockup (right column) ── */
.ptHeroSectionRight {
  position: relative;
}

.ptHeroMockup {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pt-r-xl);
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: var(--pt-sh-xl);
}
.ptHeroMockupBar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.ptHeroMockupDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ptHeroMockupDot:nth-child(1) {
  background: #ff5f57;
}
.ptHeroMockupDot:nth-child(2) {
  background: #febc2e;
}
.ptHeroMockupDot:nth-child(3) {
  background: #28c840;
}

.ptHeroCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ptHeroCard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pt-r);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--pt-t);
}
.ptHeroCard:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(13, 131, 141, 0.35);
}

.ptHeroCardFeatured {
  background: rgba(13, 131, 141, 0.14);
  border-color: rgba(13, 131, 141, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.ptHeroCardBadge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pt-brand-light);
  background: rgba(13, 131, 141, 0.18);
  border: 1px solid rgba(13, 131, 141, 0.35);
  border-radius: 100px;
  padding: 2px 8px;
  align-self: flex-start;
}
.ptHeroCardLabel {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ptHeroCardPrice {
  font-family: var(--pt-font-h);
  font-size: 26px;
  font-weight: 800;
  color: var(--pt-white);
  line-height: 1;
}
.ptHeroCardPrice span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.ptHeroCardFeatures {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.ptHeroCardFeatures li {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ptCheck {
  color: var(--pt-brand-light);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.ptHeroCardBtn {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--pt-t);
}
.ptHeroCardBtnPrimary {
  background: var(--pt-amber);
  color: #1a1a1a;
  box-shadow: 0 4px 14px var(--pt-amber-glow);
}

/* Floating pill */
.ptHeroFloatPill {
  position: absolute;
  bottom: -68px;
  left: -24px;
  background: var(--pt-white);
  border-radius: var(--pt-r);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--pt-sh-lg);
  z-index: 3;
}
.ptHeroFloatIcon {
  width: 38px;
  height: 38px;
  background: linear-gradient(
    135deg,
    var(--pt-brand) 0%,
    var(--pt-brand-dark) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ptHeroFloatIcon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.ptHeroFloatText strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pt-text);
}
.ptHeroFloatText span {
  font-size: 11px;
  color: var(--pt-text-3);
}

/* ═══════════════════════════════════════════
   SECTION LABEL (shared)
═══════════════════════════════════════════ */
.ptSectionLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--pt-brand);
  margin-bottom: 10px;
}
.ptSectionLabel::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--pt-brand);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   FVT – 4-col features  [white bg]
═══════════════════════════════════════════ */
.ptFvtSection {
  padding: 80px 0;
  background: var(--pt-white);
}
.ptFvtSectionR1 {
  font-size: 17px;
  color: var(--pt-text-2);
  line-height: 1.7;
  border-left: 3px solid var(--pt-brand);
  padding-left: 18px;
  margin-bottom: 52px;
  max-width: 820px;
}
.ptFvtSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ptFvtSectionSubtitle {
  font-size: 16px;
  color: var(--pt-text-2);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 680px;
}
.ptFvtSectionCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ptFvtSectionCol {
  background: var(--pt-off);
  border-radius: var(--pt-r-lg);
  padding: 28px 24px 24px;
  border: 1.5px solid transparent;
  transition: var(--pt-t);
}
.ptFvtSectionCol:hover {
  border-color: rgba(13, 131, 141, 0.28);
  background: var(--pt-white);
  box-shadow: var(--pt-sh-lg);
  transform: translateY(-3px);
}
/* ── FVT icon box ── */
.ptFvtSectionColIcon {
  width: 52px;
  height: 52px;
  background: rgba(13, 131, 141, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1.5px solid rgba(13, 131, 141, 0.15);
  transition: var(--pt-t);
}
.ptFvtSectionCol:hover .ptFvtSectionColIcon {
  background: rgba(13, 131, 141, 0.18);
  border-color: rgba(13, 131, 141, 0.32);
}
.ptFvtSectionColIcon svg {
  width: 26px;
  height: 26px;
  color: var(--pt-brand);
}
.ptFvtSectionColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--pt-navy);
  margin-bottom: 8px;
}
.ptFvtSectionColSubtitle {
  font-size: 13.5px;
  color: var(--pt-text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HIW – How it works  [dark bg]
═══════════════════════════════════════════ */
.ptHiwSection {
  background: linear-gradient(160deg, var(--pt-dark) 0%, var(--pt-dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.ptHiwSection::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 131, 141, 0.12) 0%,
    transparent 70%
  );
}
.ptHiwSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--pt-white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.ptHiwSectionSubtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 600px;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.ptHiwSectionCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.ptHiwSectionCol {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--pt-r-lg);
  padding: 30px 22px;
  transition: var(--pt-t);
}
.ptHiwSectionCol:hover {
  background: rgba(13, 131, 141, 0.12);
  border-color: rgba(13, 131, 141, 0.35);
  transform: translateY(-3px);
}
.ptHiwStepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--pt-brand) 0%,
    var(--pt-brand-dark) 100%
  );
  font-size: 14px;
  font-weight: 800;
  color: var(--pt-white);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px var(--pt-brand-glow);
}
/* ── HIW icon box ── */
.ptHiwSectionColIcon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--pt-t);
}
.ptHiwSectionCol:hover .ptHiwSectionColIcon {
  background: rgba(13, 131, 141, 0.22);
  border-color: rgba(13, 131, 141, 0.4);
}
.ptHiwSectionColIcon svg {
  width: 24px;
  height: 24px;
  color: var(--pt-brand-light);
}
.ptHiwSectionColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--pt-white);
  margin-bottom: 8px;
}
.ptHiwSectionColSubtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PF – "Who It's For" icon cards  [#ebf1f8 bg]
   Mirrors gmpUcCard style from Google Maps template
═══════════════════════════════════════════ */
.ptPfSection {
  background: var(--pt-off);
  padding: 88px 0;
}
.ptPfSectionInner {
  max-width: var(--pt-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.ptPfSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ptPfSectionSubtitle {
  font-size: 16px;
  color: var(--pt-text-2);
  margin-bottom: 44px;
  max-width: 620px;
}
.ptPfSectionSubtitle3 {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--pt-text-3);
  text-align: center;
}

/* Grid: featured card spans 2 rows on left, 4 regular cards on right */
.ptPfGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Base card */
.ptPfCard {
  background: var(--pt-white);
  border-radius: var(--pt-r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid transparent;
  box-shadow: var(--pt-sh);
  transition: var(--pt-t);
}
.ptPfCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--pt-sh-lg);
  border-color: rgba(13, 131, 141, 0.22);
}

/* Featured card: dark, spans 2 rows */
.ptPfCardFeat {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, #0d2040 0%, #1a2333 100%);
  border-color: rgba(13, 131, 141, 0.25);
  position: relative;
  overflow: hidden;
  justify-content: flex-end;
}
.ptPfCardFeat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pt-brand), var(--pt-brand-dark));
}
.ptPfCardFeat:hover {
  border-color: rgba(13, 131, 141, 0.5);
  box-shadow: 0 16px 48px rgba(13, 131, 141, 0.22);
}
.ptPfCardFeat .ptPfCardTitle {
  color: var(--pt-white);
  font-size: 20px;
}
.ptPfCardFeat .ptPfCardText {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

/* Large icon for featured card — teal gradient bg */
.ptPfCardIcon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--pt-brand) 0%,
    var(--pt-brand-dark) 100%
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px var(--pt-brand-glow);
}
.ptPfCardIcon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* Smaller icon for regular cards — light teal tint */
.ptPfCardIconSm {
  width: 54px;
  height: 54px;
  background: rgba(13, 131, 141, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(13, 131, 141, 0.14);
  transition: var(--pt-t);
}
.ptPfCard:hover .ptPfCardIconSm {
  background: rgba(13, 131, 141, 0.16);
  border-color: rgba(13, 131, 141, 0.28);
}
.ptPfCardIconSm svg {
  width: 28px;
  height: 28px;
  color: var(--pt-brand);
}

.ptPfCardTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--pt-navy);
}
.ptPfCardText {
  font-size: 14px;
  color: var(--pt-text-2);
  line-height: 1.65;
  flex: 1;
}

/* "Most Popular" tag */
.ptPfCardTag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(13, 131, 141, 0.14);
  border: 1px solid rgba(13, 131, 141, 0.28);
  color: var(--pt-brand-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* Responsive */
@media (max-width: 900px) {
  .ptPfGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ptPfCardFeat {
    grid-row: auto;
  }
}
@media (max-width: 580px) {
  .ptPfGrid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   DFD – Developer  [white bg]
═══════════════════════════════════════════ */
.ptDfdSection {
  background: var(--pt-white);
  padding: 80px 0;
}
.ptDfdSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ptDfdSectionSubtitle {
  font-size: 16px;
  color: var(--pt-text-2);
  margin-bottom: 40px;
}
.ptDfdSectionCols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.ptDfdSectionCol {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pt-off);
  border-radius: var(--pt-r);
  padding: 18px 20px;
  border: 1.5px solid var(--pt-border);
  transition: var(--pt-t);
}
.ptDfdSectionCol:hover {
  border-color: var(--pt-brand);
  background: rgba(13, 131, 141, 0.06);
}
/* ── DFD icon box ── */
.ptDfdSectionColIcon {
  width: 38px;
  height: 38px;
  background: rgba(13, 131, 141, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(13, 131, 141, 0.15);
  transition: var(--pt-t);
}
.ptDfdSectionCol:hover .ptDfdSectionColIcon {
  background: rgba(13, 131, 141, 0.18);
  border-color: rgba(13, 131, 141, 0.3);
}
.ptDfdSectionColIcon svg {
  width: 20px;
  height: 20px;
  color: var(--pt-brand);
}
.ptDfdSectionColSubtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--pt-text);
}
.ptDfdSectionSubtitle2 {
  margin-top: 32px;
  font-size: 15px;
  color: var(--pt-text-3);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   CAP – Capabilities banner  [dark navy]
═══════════════════════════════════════════ */
.ptCapSection {
  background: linear-gradient(135deg, var(--pt-navy) 0%, var(--pt-dark) 100%);
  padding: 64px 0;
  text-align: center;
}
.ptCapSectionInner .ptSectionLabel {
  display: flex;
  justify-content: center;
  color: var(--pt-brand-light);
}
.ptCapSectionInner .ptSectionLabel::before {
  background: var(--pt-brand-light);
}
.ptCapSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--pt-white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ptCapSectionSubtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   CAS – Scale cards  [dark bg]
═══════════════════════════════════════════ */
.ptCasSection {
  background: var(--pt-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ptCasSection::before {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 131, 141, 0.1) 0%,
    transparent 70%
  );
}
.ptCasHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.ptCasHeader > div:first-child {
  flex: 1;
  min-width: 260px;
}
.ptCasSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--pt-white);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.ptCasSectionSubtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 520px;
}

.ptCasEdgePill {
  background: rgba(13, 131, 141, 0.12);
  border: 1px solid rgba(13, 131, 141, 0.28);
  border-radius: var(--pt-r-lg);
  padding: 22px 24px;
  max-width: 260px;
  flex-shrink: 0;
}
.ptCasEdgePillIcon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--pt-brand) 0%,
    var(--pt-brand-dark) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ptCasEdgePillIcon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
.ptCasEdgePillText {
  font-size: 14px;
  font-weight: 700;
  color: var(--pt-brand-light);
  margin-bottom: 6px;
}
.ptCasEdgePillSub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.ptCasCards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.ptCasCard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pt-r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--pt-t);
  position: relative;
  overflow: hidden;
}
.ptCasCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pt-brand), transparent);
  opacity: 0;
  transition: var(--pt-t);
}
.ptCasCard:hover {
  background: rgba(13, 131, 141, 0.09);
  border-color: rgba(13, 131, 141, 0.3);
  transform: translateY(-3px);
}
.ptCasCard:hover::before {
  opacity: 1;
}

.ptCasCardWide {
  grid-column: 1/3;
  grid-row: 1/3;
  background: rgba(13, 131, 141, 0.08);
  border-color: rgba(13, 131, 141, 0.22);
  justify-content: flex-end;
  min-height: 260px;
}
.ptCasCardWide::before {
  opacity: 1;
}

.ptCasCardNum {
  font-family: var(--pt-font-h);
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  position: absolute;
  top: 18px;
  right: 20px;
}
.ptCasCardWide .ptCasCardNum {
  font-size: 80px;
  top: 12px;
  right: 20px;
}

.ptCasCardIcon {
  width: 44px;
  height: 44px;
  background: rgba(13, 131, 141, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.ptCasCardIcon svg {
  width: 22px;
  height: 22px;
  color: var(--pt-brand-light);
}
.ptCasCardWide .ptCasCardIcon {
  width: 52px;
  height: 52px;
  background: rgba(13, 131, 141, 0.24);
}
.ptCasCardWide .ptCasCardIcon svg {
  width: 26px;
  height: 26px;
}

.ptCasCardTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--pt-white);
  line-height: 1.3;
}
.ptCasCardWide .ptCasCardTitle {
  font-size: 22px;
}
.ptCasCardText {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  flex: 1;
}
.ptCasCardWide .ptCasCardText {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}
.ptCasCardTag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(13, 131, 141, 0.14);
  border: 1px solid rgba(13, 131, 141, 0.25);
  color: var(--pt-brand-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .ptCasCards {
    grid-template-columns: repeat(2, 1fr);
  }
  .ptCasCardWide {
    grid-column: 1/3;
    grid-row: auto;
  }
}
@media (max-width: 540px) {
  .ptCasCards {
    grid-template-columns: 1fr;
  }
  .ptCasCardWide {
    grid-column: 1;
    grid-row: auto;
  }
  .ptCasHeader {
    flex-direction: column;
  }
  .ptCasEdgePill {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   LIST – Comparison table  [#ebf1f8 bg]
═══════════════════════════════════════════ */
.ptListSection {
  background: var(--pt-off);
  padding: 88px 0;
}
.ptListSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.ptListSectionSubtitle {
  font-size: 16px;
  color: var(--pt-text-2);
  margin-bottom: 44px;
  max-width: 620px;
}

.ptCmpTable {
  width: 100%;
  border-radius: var(--pt-r-xl);
  overflow: hidden;
  box-shadow: var(--pt-sh-xl);
  border: 1.5px solid var(--pt-border);
  margin-top: 8px;
}
.ptCmpRow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--pt-border);
}
.ptCmpRow:last-child {
  border-bottom: none;
}
.ptCmpCell {
  padding: 18px 24px;
  font-size: 14.5px;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Header */
.ptCmpHeader {
  background: var(--pt-navy);
}
.ptCmpHeader .ptCmpCell {
  padding: 22px 24px;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}
.ptCmpPlanName {
  font-size: 17px;
  font-weight: 700;
  color: var(--pt-white);
}
.ptCmpPlanSub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.ptCmpBadge {
  display: inline-flex;
  background: linear-gradient(
    135deg,
    var(--pt-brand) 0%,
    var(--pt-brand-dark) 100%
  );
  color: var(--pt-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.ptCmpPlanHighlight {
  background: linear-gradient(160deg, #0d2040 0%, #112840 100%);
  position: relative;
}
.ptCmpPlanHighlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pt-brand), var(--pt-brand-dark));
}

.ptCmpFeatureCol {
  background: var(--pt-white);
  font-weight: 600;
  color: var(--pt-navy);
  font-size: 14px;
  border-right: 1px solid var(--pt-border);
}
.ptCmpFeatureIcon {
  font-size: 16px;
  flex-shrink: 0;
}

.ptCmpOld {
  color: var(--pt-text-3);
  background: var(--pt-white);
  border-right: 1px solid var(--pt-border);
}
.ptCmpRow:nth-child(even) .ptCmpOld {
  background: #f2f6fb;
}

.ptCmpNew {
  background: rgba(13, 131, 141, 0.05);
  color: var(--pt-text);
  font-weight: 500;
  position: relative;
}
.ptCmpNew::before {
  content: "✓";
  color: var(--pt-brand);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 2px;
}
.ptCmpRow:nth-child(even) .ptCmpNew {
  background: rgba(13, 131, 141, 0.09);
}

.ptCmpRowLast {
  border-bottom: 2px solid var(--pt-border);
}

.ptCmpFooter {
  background: var(--pt-white);
  border-bottom: none;
}
.ptCmpOldFooter {
  color: var(--pt-text-3);
  font-size: 13px;
  border-right: 1px solid var(--pt-border);
  justify-content: center;
}
.ptCmpCross {
  color: #f87171;
  font-weight: 700;
  margin-right: 4px;
}
.ptCmpNewFooter {
  background: rgba(13, 131, 141, 0.06);
  justify-content: center;
}
.ptCmpNewFooter .ptBtnPrimary {
  font-size: 13px;
  padding: 11px 24px;
}

@media (max-width: 720px) {
  .ptCmpRow {
    grid-template-columns: 1fr 1fr;
  }
  .ptCmpFeatureCol {
    display: none;
  }
}
@media (max-width: 480px) {
  .ptCmpRow {
    grid-template-columns: 1fr;
  }
  .ptCmpOld {
    border-right: none;
    border-bottom: 1px solid var(--pt-border);
  }
  .ptCmpOldFooter {
    border-right: none;
    border-bottom: 1px solid var(--pt-border);
  }
  .ptCmpCell {
    padding: 14px 18px;
  }
}

/* ═══════════════════════════════════════════
   GAR – Guarantee  [white bg]
═══════════════════════════════════════════ */
.ptGarSection {
  background: var(--pt-off);
  padding: 80px 0;
}
.ptGarSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ptGarWave {
  max-width: 320px;
  margin-bottom: 20px;
}
.ptGarWave svg {
  width: 100%;
  height: 16px;
}
.ptGarSectionSubtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--pt-brand);
  margin-bottom: 8px;
}
.ptGarSectionSubtitle2 {
  font-size: 16px;
  color: var(--pt-text-2);
  margin-bottom: 40px;
  max-width: 600px;
}
.ptGarBox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  background: var(--pt-white);
  border-radius: var(--pt-r-xl);
  padding: 40px;
  box-shadow: var(--pt-sh-lg);
  border: 1.5px solid var(--pt-border);
  align-items: start;
}
.ptGarBoxLeft {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.ptGarBadge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    135deg,
    rgba(13, 131, 141, 0.1) 0%,
    rgba(13, 131, 141, 0.05) 100%
  );
  border: 1.5px solid rgba(13, 131, 141, 0.25);
  border-radius: var(--pt-r-lg);
  padding: 16px 20px;
}
.ptGarBadgeIcon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--pt-brand) 0%,
    var(--pt-brand-dark) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ptGarBadgeIcon svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.ptGarBadge strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--pt-navy);
}
.ptGarBadge span {
  font-size: 12px;
  color: var(--pt-text-3);
}
.ptGarPayments {
  display: flex;
  gap: 8px;
}
.ptGarPayments svg {
  height: 26px;
  width: auto;
  border-radius: 4px;
}
.ptGarBoxRight p {
  font-size: 15px;
  color: var(--pt-text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ptGarBoxRight p:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .ptGarBox {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   FEAT – Pro features  [#ebf1f8 bg]
═══════════════════════════════════════════ */
.ptFeatSection {
  background: var(--pt-off);
  padding: 88px 0;
}
.ptFeatSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ptFeatSectionTitle2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pt-navy);
  margin-top: 52px;
  margin-bottom: 10px;
}
.ptFeatSectionSubtitle {
  font-size: 16px;
  color: var(--pt-text-2);
  margin-bottom: 48px;
  max-width: 660px;
}
.ptFeatSectionSubtitle2 {
  font-size: 15px;
  color: var(--pt-text-3);
  max-width: 640px;
}
.ptFeatSectionCols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ptFeatSectionCol {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--pt-white);
  border-radius: var(--pt-r-lg);
  padding: 26px 24px;
  border: 1.5px solid transparent;
  transition: var(--pt-t);
}
.ptFeatSectionCol:hover {
  border-color: rgba(13, 131, 141, 0.25);
  background: var(--pt-white);
  box-shadow: var(--pt-sh);
}
/* ── FEAT icon box ── */
.ptFeatSectionColIcon {
  width: 48px;
  height: 48px;
  background: rgba(13, 131, 141, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(13, 131, 141, 0.15);
  transition: var(--pt-t);
}
.ptFeatSectionCol:hover .ptFeatSectionColIcon {
  background: rgba(13, 131, 141, 0.18);
  border-color: rgba(13, 131, 141, 0.3);
}
.ptFeatSectionColIcon svg {
  width: 24px;
  height: 24px;
  color: var(--pt-brand);
}
.ptFeatSectionColTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--pt-navy);
  margin-bottom: 6px;
}
.ptFeatSectionColSubtitle {
  font-size: 13.5px;
  color: var(--pt-text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PRS – Pricing  [white bg]
═══════════════════════════════════════════ */
.ptPrsSection {
  background: var(--pt-white);
  padding: 88px 0;
}
.ptPrsSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--pt-navy);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.ptPrsSectionSubtitle {
  font-size: 16px;
  color: var(--pt-text-2);
  margin-bottom: 48px;
  max-width: 560px;
}
.ptPrsSectionSubtitle2 {
  font-size: 14px;
  color: var(--pt-text-3);
  text-align: center;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   SUP – Support CTA  [dark bg]
═══════════════════════════════════════════ */
.ptSupSection {
  background: linear-gradient(160deg, var(--pt-dark) 0%, var(--pt-dark2) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.ptSupSection::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 131, 141, 0.14) 0%,
    transparent 70%
  );
}
.ptSupSectionInnerContainer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ptSupSectionTitle {
  font-family: var(--pt-font-h);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--pt-white);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.ptSupSectionSubtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 560px;
}
.ptSupSectionSubtitle p {
  margin-bottom: 10px;
}
.ptSupSectionSubtitle p:last-child {
  margin-bottom: 0;
}
.ptSupSectionTitle2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pt-brand-light);
  margin-bottom: 10px;
}
.ptSupSectionSubtitle2 {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
.ptSupSectionSubtitle2 p {
  margin-bottom: 8px;
}
.ptSupSectionInnerRight {
  flex-shrink: 0;
}
.ptSupIllustration {
  width: 220px;
  height: 220px;
}

/* CTA row with amber button */
.ptSupCtaRow {
  margin-top: 48px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.ptSupCtaBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--pt-amber);
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 32px var(--pt-amber-glow), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: var(--pt-t);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.ptSupCtaBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 60%
  );
  border-radius: inherit;
}
.ptSupCtaBtn:hover {
  background: var(--pt-amber-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 190, 43, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
  text-decoration: none;
}
.ptSupCtaBtn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--pt-t);
}
.ptSupCtaBtn:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ptFvtSectionCols {
    grid-template-columns: repeat(2, 1fr);
  }
  .ptHiwSectionCols {
    grid-template-columns: repeat(2, 1fr);
  }
  .ptDfdSectionCols {
    grid-template-columns: repeat(2, 1fr);
  }
  .ptFeatSectionCols {
    grid-template-columns: 1fr;
  }
  .ptHeroCards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ptHeroCardFeatured {
    transform: none;
  }
}

@media (max-width: 860px) {
  .ptHeroSection {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 72px;
  }
  .ptHeroSectionRight {
    display: none;
  }
  .ptPfSectionCols {
    grid-template-columns: 1fr;
  }
  .ptSupSectionInnerContainer {
    grid-template-columns: 1fr;
  }
  .ptSupSectionInnerRight {
    display: none;
  }
}

@media (max-width: 640px) {
  .ptHeroSectionTitle {
    font-size: clamp(32px, 8vw, 44px);
  }
  .ptHeroSectionTitle span {
    display: block;
  }
  .ptFvtSectionCols {
    grid-template-columns: 1fr;
  }
  .ptHiwSectionCols {
    grid-template-columns: 1fr 1fr;
  }
  .ptDfdSectionCols {
    grid-template-columns: 1fr;
  }
  .ptHeroCtaRow {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .ptHiwSectionCols {
    grid-template-columns: 1fr;
  }
  :root {
    --pt-r-xl: 20px;
  }
}
