/* ============================================================
   pct.css  - Pactthread global stylesheet
   brand_prefix: pct
   palette:
     bg-canvas:     #F7F5F0  (warm parchment)
     bg-deep:       #1C2B27  (forest-slate dark)
     bg-mid:        #EBE8E2  (deeper parchment)
     bg-surface:    #FFFFFF  (white card)
     accent-primary:#3D6B5E  (process green)
     accent-bright: #4E8C7C  (hover green)
     accent-warm:   #C9572B  (terracotta)
     text-dark-pri: #E8E2D8
     text-dark-mut: #9EAAA6
     text-light-pri:#1C2B27
     text-light-mut:#5C6B68
     border-light:  #D8D3CB
     border-dark:   #2E403A
   ============================================================ */

/* ============================================================
   1. RESET + BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1C2B27;
  background-color: #F7F5F0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   2. TYPOGRAPHY SCALE
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 400;
}

.pct-h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); }
.pct-h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.pct-h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
.pct-h4 { font-size: 1.125rem; font-family: 'Manrope', system-ui, sans-serif; font-weight: 600; }

.pct-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875rem;
}

/* ============================================================
   3. LAYOUT CONTAINERS
   ============================================================ */

.pct-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

.pct-container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 3rem);
  padding-right: clamp(1.5rem, 5vw, 3rem);
}

/* ============================================================
   4. SECTION BACKGROUNDS
   ============================================================ */

.pct-section {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.pct-section--dark {
  background-color: #1C2B27;
}

.pct-section--dark-alt {
  background-color: #243530;
}

.pct-section--light {
  background-color: #F7F5F0;
}

.pct-section--mid {
  background-color: #EBE8E2;
}

.pct-section--white {
  background-color: #FFFFFF;
}

.pct-section--brand {
  background-color: #3D6B5E;
}

/* ============================================================
   5. BODY THEME CLASSES (page-level)
   ============================================================ */

body.pct-page--dark-top {
  background-color: #1C2B27;
}

body.pct-page--light-top {
  background-color: #F7F5F0;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */

.pct-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.pct-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem clamp(1.5rem, 5vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.pct-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pct-nav__logo img {
  height: 32px;
  width: auto;
}

.pct-nav__logo-light { display: block; }
.pct-nav__logo-dark  { display: none; }

.pct-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pct-nav__link {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.pct-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.pct-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pct-nav__hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: background-color 0.2s ease, transform 0.3s ease, opacity 0.3s ease;
}

.pct-nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.pct-nav__mobile.is-open {
  display: flex;
}

.pct-nav__mobile-link {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid;
}

.pct-nav__mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

/* Dark-top page nav (transparent overlaps dark hero) */
.pct-page--dark-top .pct-nav {
  background-color: transparent;
}

.pct-page--dark-top .pct-nav__link {
  color: #E8E2D8;
}

.pct-page--dark-top .pct-nav__link:hover {
  color: #4E8C7C;
}

.pct-page--dark-top .pct-nav__logo-light { display: block; }
.pct-page--dark-top .pct-nav__logo-dark  { display: none; }

.pct-page--dark-top .pct-nav__hamburger-bar {
  background-color: #E8E2D8;
}

.pct-page--dark-top .pct-nav__mobile {
  background-color: #1C2B27;
}

.pct-page--dark-top .pct-nav__mobile-link {
  color: #E8E2D8;
  border-bottom-color: #2E403A;
}

.pct-page--dark-top .pct-nav__mobile-close {
  color: #E8E2D8;
}

/* Light-top page nav */
.pct-page--light-top .pct-nav {
  background-color: #F7F5F0;
  border-bottom: 1px solid #D8D3CB;
}

.pct-page--light-top .pct-nav__link {
  color: #5C6B68;
}

.pct-page--light-top .pct-nav__link:hover {
  color: #3D6B5E;
}

.pct-page--light-top .pct-nav__logo-light { display: none; }
.pct-page--light-top .pct-nav__logo-dark  { display: block; }

.pct-page--light-top .pct-nav__hamburger-bar {
  background-color: #1C2B27;
}

.pct-page--light-top .pct-nav__mobile {
  background-color: #F7F5F0;
}

.pct-page--light-top .pct-nav__mobile-link {
  color: #1C2B27;
  border-bottom-color: #D8D3CB;
}

.pct-page--light-top .pct-nav__mobile-close {
  color: #1C2B27;
}

/* Scrolled state - dark-top pages get a solid dark bg */
.pct-page--dark-top .pct-nav--scrolled {
  background-color: #1C2B27;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.pct-page--dark-top .pct-nav--scrolled .pct-nav__logo-light { display: block !important; }
.pct-page--dark-top .pct-nav--scrolled .pct-nav__logo-dark  { display: none !important; }

/* Scrolled state - light-top pages stay light but add shadow */
.pct-page--light-top .pct-nav--scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(28,43,39,0.08);
}

.pct-page--light-top .pct-nav--scrolled .pct-nav__logo-dark  { display: block !important; }
.pct-page--light-top .pct-nav--scrolled .pct-nav__logo-light { display: none !important; }

/* ============================================================
   7. BUTTONS
   ============================================================ */

.pct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.pct-btn--primary {
  background-color: #3D6B5E;
  color: #FFFFFF;
  border-color: #3D6B5E;
}

.pct-btn--primary:hover {
  background-color: #4E8C7C;
  border-color: #4E8C7C;
  color: #FFFFFF;
}

.pct-btn--primary:focus-visible {
  outline: 2px solid #4E8C7C;
  outline-offset: 2px;
}

.pct-btn--outline-light {
  background-color: transparent;
  color: #3D6B5E;
  border-color: #3D6B5E;
}

.pct-btn--outline-light:hover {
  background-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-btn--ghost-on-dark {
  background-color: transparent;
  color: #E8E2D8;
  border-color: #9EAAA6;
}

.pct-btn--ghost-on-dark:hover {
  border-color: #E8E2D8;
  color: #E8E2D8;
}

.pct-btn--ghost-on-light {
  background-color: transparent;
  color: #3D6B5E;
  border-color: #3D6B5E;
}

.pct-btn--ghost-on-light:hover {
  background-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-btn--text-link-dark {
  background: none;
  border: none;
  padding: 0;
  color: #4E8C7C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pct-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
}

.pct-btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Nav button variants */
.pct-page--dark-top .pct-nav .pct-btn--ghost-on-dark {
  color: #E8E2D8;
  border-color: #9EAAA6;
}

.pct-page--dark-top .pct-nav .pct-btn--ghost-on-dark:hover {
  border-color: #E8E2D8;
  color: #FFFFFF;
}

.pct-page--light-top .pct-nav .pct-btn--ghost-on-dark {
  color: #5C6B68;
  border-color: #D8D3CB;
}

.pct-page--light-top .pct-nav .pct-btn--ghost-on-dark:hover {
  color: #1C2B27;
  border-color: #1C2B27;
}

/* Scrolled state nav button */
.pct-page--dark-top .pct-nav--scrolled .pct-btn--ghost-on-dark {
  color: #E8E2D8;
  border-color: #9EAAA6;
}

/* ============================================================
   8. FOOTER
   ============================================================ */

.pct-footer {
  background-color: #1C2B27;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.pct-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #2E403A;
}

.pct-footer__col {
  display: flex;
  flex-direction: column;
}

.pct-footer__brand-logo {
  margin-bottom: 1rem;
}

.pct-footer__brand-logo img {
  height: 30px;
  width: auto;
}

.pct-footer__tagline {
  font-size: 0.9rem;
  color: #9EAAA6;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.pct-footer__contact {
  font-size: 0.85rem;
  color: #9EAAA6;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.pct-footer__contact a {
  color: #9EAAA6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-footer__contact a:hover {
  color: #E8E2D8;
}

.pct-footer__social {
  display: flex;
  gap: 0.75rem;
}

.pct-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #2E403A;
  color: #9EAAA6;
  font-size: 0.85rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pct-footer__social-link:hover {
  border-color: #9EAAA6;
  color: #E8E2D8;
}

.pct-footer__col-heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8E2D8;
  margin-bottom: 1.25rem;
}

.pct-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pct-footer__nav-link {
  font-size: 0.875rem;
  color: #9EAAA6;
  transition: color 0.2s ease;
}

.pct-footer__nav-link:hover {
  color: #E8E2D8;
}

.pct-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
}

.pct-footer__copy {
  font-size: 0.8rem;
  color: #9EAAA6;
}

.pct-footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.pct-footer__legal-link {
  font-size: 0.8rem;
  color: #9EAAA6;
  transition: color 0.2s ease;
}

.pct-footer__legal-link:hover {
  color: #E8E2D8;
}

/* ============================================================
   9. HERO - INDEX
   ============================================================ */

.pct-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.pct-hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.pct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4E8C7C;
  margin-bottom: 1.5rem;
}

.pct-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4E8C7C;
  flex-shrink: 0;
}

.pct-hero__h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #E8E2D8;
  margin-bottom: 1.5rem;
}

.pct-hero__h1 em {
  font-style: normal;
  color: #4E8C7C;
}

.pct-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #9EAAA6;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.pct-hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pct-hero__text {
  display: flex;
  flex-direction: column;
}

.pct-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pct-hero__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

/* Hero pipeline mock */
.pct-pipeline-mock {
  background-color: #243530;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  border: 1px solid #2E403A;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  width: 100%;
}

.pct-pipeline-mock__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9EAAA6;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.pct-pipeline-mock__stages {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 1.5rem;
}

.pct-pipeline-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.pct-pipeline-stage:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background-color: #2E403A;
}

.pct-pipeline-stage--active::after {
  background-color: #3D6B5E !important;
}

.pct-pipeline-stage__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #2E403A;
  background-color: #1C2B27;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #9EAAA6;
  z-index: 1;
  position: relative;
}

.pct-pipeline-stage--active .pct-pipeline-stage__dot {
  border-color: #3D6B5E;
  background-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-pipeline-stage--done .pct-pipeline-stage__dot {
  border-color: #3D6B5E;
  background-color: #2A4C43;
  color: #4E8C7C;
}

.pct-pipeline-stage__name {
  font-size: 0.7rem;
  color: #9EAAA6;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.pct-pipeline-stage--active .pct-pipeline-stage__name {
  color: #4E8C7C;
  font-weight: 600;
}

.pct-pipeline-stage--done .pct-pipeline-stage__name {
  color: #7AADA0;
}

.pct-pipeline-mock__doc {
  background-color: #1C2B27;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  border: 1px solid #2E403A;
}

.pct-pipeline-mock__doc-line {
  height: 6px;
  border-radius: 3px;
  background-color: #2E403A;
  margin-bottom: 0.5rem;
}

.pct-pipeline-mock__doc-line:last-child {
  margin-bottom: 0;
}

.pct-pipeline-mock__doc-line--long { width: 85%; }
.pct-pipeline-mock__doc-line--mid  { width: 65%; }
.pct-pipeline-mock__doc-line--short{ width: 45%; }
.pct-pipeline-mock__doc-line--red  { background-color: rgba(201,87,43,0.5); }
.pct-pipeline-mock__doc-line--green{ background-color: rgba(61,107,94,0.6); }

.pct-pipeline-mock__status {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2E403A;
}

.pct-pipeline-mock__status-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pct-pipeline-mock__status-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: #E8E2D8;
}

.pct-pipeline-mock__status-key {
  font-size: 0.65rem;
  color: #9EAAA6;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   10. PROBLEM STRIP
   ============================================================ */

.pct-problem-strip {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pct-problem-strip__stat {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #E8E2D8;
  line-height: 1.3;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.pct-problem-strip__note {
  font-size: 0.8rem;
  color: #9EAAA6;
  font-style: italic;
}

/* ============================================================
   11. WORKFLOW STEPS (pipeline)
   ============================================================ */

.pct-workflow {
  text-align: center;
}

.pct-workflow__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-workflow__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #1C2B27;
  margin-bottom: 1rem;
}

.pct-workflow__sub {
  font-size: 1.0625rem;
  color: #5C6B68;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
}

.pct-workflow__steps {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}

.pct-workflow__connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #3D6B5E, #4E8C7C);
  margin-top: 2rem;
  position: relative;
}

.pct-workflow__step {
  flex: 0 0 auto;
  width: calc(20% - 0.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 0.5rem;
}

.pct-workflow__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3D6B5E;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pct-workflow__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #3D6B5E;
  color: #FFFFFF;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #F7F5F0;
}

.pct-workflow__step-title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1C2B27;
  text-align: center;
}

.pct-workflow__step-body {
  font-size: 0.825rem;
  color: #5C6B68;
  line-height: 1.55;
  text-align: center;
}

/* Horizontal flow layout */
.pct-workflow__track {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 2rem;
}

.pct-workflow__track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #3D6B5E 0%, #4E8C7C 100%);
}

.pct-workflow__step-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: 0 0.75rem;
}

/* ============================================================
   12. FEATURE DEPTH - alternating pairs
   ============================================================ */

.pct-feature-depth {
  text-align: center;
}

.pct-feature-depth__intro-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-feature-depth__intro-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #1C2B27;
  margin-bottom: 1rem;
}

.pct-feature-depth__intro-sub {
  font-size: 1.0625rem;
  color: #5C6B68;
  max-width: 560px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.pct-feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.pct-feature-pair:last-child {
  margin-bottom: 0;
}

.pct-feature-pair--reverse .pct-feature-pair__text {
  order: 2;
}

.pct-feature-pair--reverse .pct-feature-pair__visual {
  order: 1;
}

.pct-feature-pair__text {
  text-align: left;
}

.pct-feature-pair__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-feature-pair__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: #1C2B27;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pct-feature-pair__body {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pct-feature-pair__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pct-feature-pair__link:hover {
  color: #4E8C7C;
}

/* Inline SVG mock panels */
.pct-mock-panel {
  background-color: #F7F5F0;
  border-radius: 10px;
  border: 1px solid #D8D3CB;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28,43,39,0.08);
}

.pct-mock-panel--dark {
  background-color: #1C2B27;
  border-color: #2E403A;
}

.pct-mock-panel__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid #D8D3CB;
  background-color: #FFFFFF;
}

.pct-mock-panel--dark .pct-mock-panel__header {
  border-bottom-color: #2E403A;
  background-color: #243530;
}

.pct-mock-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pct-mock-panel__dot--red   { background-color: #C9572B; }
.pct-mock-panel__dot--amber { background-color: #D4A847; }
.pct-mock-panel__dot--green { background-color: #3D6B5E; }

.pct-mock-panel__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5C6B68;
  margin-left: auto;
  letter-spacing: 0.03em;
}

.pct-mock-panel--dark .pct-mock-panel__title {
  color: #9EAAA6;
}

.pct-mock-panel__body {
  padding: 1.5rem;
}

/* Clause selector mock */
.pct-clause-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pct-clause-item {
  padding: 0.875rem 1rem;
  border-radius: 6px;
  border: 1px solid #D8D3CB;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.pct-clause-item--selected {
  border-color: #3D6B5E;
  background-color: #EEF4F2;
}

.pct-clause-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9EAAA6;
  margin-bottom: 0.25rem;
}

.pct-clause-item--selected .pct-clause-item__label {
  color: #3D6B5E;
}

.pct-clause-item__text {
  font-size: 0.8rem;
  color: #5C6B68;
  line-height: 1.45;
}

.pct-clause-item--selected .pct-clause-item__text {
  color: #1C2B27;
}

.pct-clause-item__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pct-clause-item__badge--preferred {
  background-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-clause-item__badge--fallback {
  background-color: #EBE8E2;
  color: #5C6B68;
}

/* Obligation calendar mock */
.pct-obligation-cal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pct-obligation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 6px;
  background-color: #FFFFFF;
  border: 1px solid #D8D3CB;
}

.pct-obligation-item__date {
  flex-shrink: 0;
  width: 44px;
  text-align: center;
  background-color: #F7F5F0;
  border-radius: 4px;
  padding: 0.25rem 0.375rem;
}

.pct-obligation-item__date-month {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9EAAA6;
}

.pct-obligation-item__date-day {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1C2B27;
  line-height: 1;
}

.pct-obligation-item__info {
  flex: 1;
  min-width: 0;
}

.pct-obligation-item__name {
  font-size: 0.825rem;
  font-weight: 600;
  color: #1C2B27;
  margin-bottom: 0.125rem;
}

.pct-obligation-item__meta {
  font-size: 0.75rem;
  color: #9EAAA6;
}

.pct-obligation-item__flag {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pct-obligation-item__flag--red    { background-color: #C9572B; }
.pct-obligation-item__flag--amber  { background-color: #D4A847; }
.pct-obligation-item__flag--green  { background-color: #3D6B5E; }

/* ============================================================
   13. INTEGRATION BAR
   ============================================================ */

.pct-integration-bar {
  text-align: center;
}

.pct-integration-bar__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #5C6B68;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pct-integration-bar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.pct-integration-mark {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.pct-integration-mark:hover {
  opacity: 1;
}

.pct-integration-mark__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.pct-integration-mark__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1C2B27;
}

/* Brand icon colors */
.pct-int-salesforce { background-color: #00A1E0; }
.pct-int-google     { background-color: #4285F4; }
.pct-int-microsoft  { background-color: #00A4EF; }
.pct-int-slack      { background-color: #4A154B; }
.pct-int-docusign   { background-color: #FFBE00; }
.pct-int-adobe      { background-color: #FA0F00; }
.pct-int-workday    { background-color: #F96B1B; }
.pct-int-hubspot    { background-color: #FF7A59; }
.pct-int-netsuite   { background-color: #298AC6; }

/* ============================================================
   14. TESTIMONIALS / CUSTOMER VOICES
   ============================================================ */

.pct-testimonials {
  text-align: center;
}

.pct-testimonials__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4E8C7C;
  margin-bottom: 0.75rem;
}

.pct-testimonials__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #E8E2D8;
  margin-bottom: 3rem;
}

.pct-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pct-testimonial-card {
  background-color: #243530;
  border-radius: 10px;
  border: 1px solid #2E403A;
  padding: 2.25rem;
  text-align: left;
}

.pct-testimonial-card__quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: #E8E2D8;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.pct-testimonial-card__quote::before {
  content: '\201C';
  margin-right: 2px;
  color: #4E8C7C;
}

.pct-testimonial-card__quote::after {
  content: '\201D';
  margin-left: 2px;
  color: #4E8C7C;
}

.pct-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pct-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3D6B5E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.pct-testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #E8E2D8;
}

.pct-testimonial-card__role {
  font-size: 0.8rem;
  color: #9EAAA6;
  margin-top: 0.125rem;
}

/* ============================================================
   15. CTA BAND
   ============================================================ */

.pct-cta-band {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pct-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.03) 30px,
    rgba(255,255,255,0.03) 31px
  );
  pointer-events: none;
}

.pct-cta-band__inner {
  position: relative;
  z-index: 1;
}

.pct-cta-band__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pct-cta-band__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.pct-cta-band .pct-btn--outline-light {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.pct-cta-band .pct-btn--outline-light:hover {
  background-color: #FFFFFF;
  color: #3D6B5E;
}

/* ============================================================
   16. PRODUCT PAGE
   ============================================================ */

.pct-product-hero {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.pct-product-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4E8C7C;
  margin-bottom: 1rem;
}

.pct-product-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: #E8E2D8;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pct-product-hero__sub {
  font-size: 1.125rem;
  color: #9EAAA6;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.pct-feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2rem;
}

.pct-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  border-radius: 99px;
  border: 1px solid #2E403A;
  font-size: 0.825rem;
  font-weight: 500;
  color: #9EAAA6;
  background-color: transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.pct-feature-pill:hover,
.pct-feature-pill--active {
  border-color: #3D6B5E;
  color: #4E8C7C;
}

/* Product module section */
.pct-product-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pct-product-module--reverse .pct-product-module__text {
  order: 2;
}

.pct-product-module--reverse .pct-product-module__visual {
  order: 1;
}

.pct-product-module__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-product-module__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #1C2B27;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pct-product-module__heading--light {
  color: #E8E2D8;
}

.pct-product-module__body {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pct-product-module__body--light {
  color: #9EAAA6;
}

/* Approval flowchart SVG mock */
.pct-approval-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 2rem 1.5rem;
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #D8D3CB;
}

.pct-flow-node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  width: 200px;
  justify-content: center;
}

.pct-flow-node--start {
  background-color: #EEF4F2;
  border: 1px solid #3D6B5E;
  color: #1C2B27;
}

.pct-flow-node--check {
  background-color: #F7F5F0;
  border: 1px solid #D8D3CB;
  color: #1C2B27;
}

.pct-flow-node--action {
  background-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-flow-arrow {
  width: 2px;
  height: 28px;
  background-color: #D8D3CB;
  margin: 0 auto;
}

.pct-flow-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.pct-flow-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.pct-flow-branch-line {
  width: 2px;
  height: 20px;
  background-color: #D8D3CB;
}

/* ============================================================
   17. HOW IT WORKS PAGE
   ============================================================ */

.pct-hiw-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.pct-hiw-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-hiw-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: #1C2B27;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  max-width: 720px;
}

.pct-hiw-hero__sub {
  font-size: 1.125rem;
  color: #5C6B68;
  max-width: 580px;
  line-height: 1.65;
}

/* Process overview diagram */
.pct-process-overview {
  position: relative;
}

.pct-process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.pct-process-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 2px;
  background: linear-gradient(90deg, #3D6B5E, #4E8C7C);
}

.pct-process-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.pct-process-item__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 3px solid #3D6B5E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.375rem;
  color: #3D6B5E;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 6px #FFFFFF;
}

.pct-process-item__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1C2B27;
  text-align: center;
}

.pct-process-item__body {
  font-size: 0.8rem;
  color: #5C6B68;
  text-align: center;
  line-height: 1.5;
}

/* Stage detail alternating */
.pct-stage-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.pct-stage-detail:not(:last-child) {
  border-bottom: 1px solid #D8D3CB;
}

.pct-stage-detail--reverse .pct-stage-detail__text {
  order: 2;
}

.pct-stage-detail--reverse .pct-stage-detail__visual {
  order: 1;
}

.pct-stage-detail__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  color: #D8D3CB;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pct-stage-detail__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: #1C2B27;
  margin-bottom: 1rem;
}

.pct-stage-detail__body {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
}

.pct-stage-detail__body p {
  margin-bottom: 0.875rem;
}

.pct-stage-detail__body p:last-child {
  margin-bottom: 0;
}

/* Setup timeline */
.pct-setup-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.pct-setup-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 16%;
  right: 16%;
  height: 2px;
  background-color: #3D6B5E;
}

.pct-setup-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  position: relative;
}

.pct-setup-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #3D6B5E;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 4px #FFFFFF;
}

.pct-setup-step__period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3D6B5E;
}

.pct-setup-step__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1C2B27;
}

.pct-setup-step__body {
  font-size: 0.825rem;
  color: #5C6B68;
  line-height: 1.5;
}

/* ============================================================
   18. INTEGRATIONS PAGE
   ============================================================ */

.pct-int-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
}

.pct-int-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-int-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: #1C2B27;
  margin-bottom: 1.25rem;
}

.pct-int-hero__sub {
  font-size: 1.125rem;
  color: #5C6B68;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.pct-int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pct-int-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D3CB;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.pct-int-card:hover {
  border-color: #3D6B5E;
  box-shadow: 0 4px 16px rgba(61,107,94,0.1);
}

.pct-int-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.pct-int-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.5rem;
}

.pct-int-card__desc {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.55;
}

/* API code mock section */
.pct-api-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pct-api-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-api-section__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #1C2B27;
  margin-bottom: 1rem;
}

.pct-api-section__body {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Code mock terminal */
.pct-code-mock {
  background-color: #1C2B27;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.pct-code-mock__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.125rem;
  background-color: #243530;
  border-bottom: 1px solid #2E403A;
}

.pct-code-mock__body {
  padding: 1.5rem;
  overflow-x: auto;
}

.pct-code-mock__body pre {
  margin: 0;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.825rem;
  line-height: 1.7;
  color: #E8E2D8;
}

.pct-code-tok-method { color: #4E8C7C; }
.pct-code-tok-url    { color: #E8E2D8; }
.pct-code-tok-key    { color: #9EAAA6; }
.pct-code-tok-val    { color: #D4A847; }
.pct-code-tok-str    { color: #C9572B; }
.pct-code-tok-comment{ color: #5C6B68; font-style: italic; }
.pct-code-tok-brace  { color: #7AADA0; }

/* ============================================================
   19. SECURITY PAGE
   ============================================================ */

.pct-sec-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
}

.pct-sec-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4E8C7C;
  margin-bottom: 1rem;
}

.pct-sec-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: #E8E2D8;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.pct-sec-hero__sub {
  font-size: 1.125rem;
  color: #9EAAA6;
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.pct-sec-hero__img {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.pct-sec-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pct-sec-practice-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D3CB;
  padding: 2rem;
}

.pct-sec-practice-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #EEF4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #3D6B5E;
  margin-bottom: 1.25rem;
}

.pct-sec-practice-card__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.625rem;
}

.pct-sec-practice-card__body {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.6;
}

/* Compliance roadmap */
.pct-roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pct-roadmap__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #1C2B27;
  margin-bottom: 1rem;
}

.pct-roadmap__body {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pct-roadmap__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0;
  border-top: 1px solid #D8D3CB;
}

.pct-roadmap__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #FFFFFF;
}

.pct-roadmap__item-icon--done   { background-color: #3D6B5E; }
.pct-roadmap__item-icon--pending{ background-color: #9EAAA6; }

.pct-roadmap__item-text {
  font-size: 0.875rem;
  color: #1C2B27;
  line-height: 1.5;
}

.pct-roadmap__item-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

/* ============================================================
   20. PRICING PAGE
   ============================================================ */

.pct-pricing-hero {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 2rem;
}

.pct-pricing-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-pricing-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: #1C2B27;
  margin-bottom: 1.25rem;
}

.pct-pricing-hero__sub {
  font-size: 1.0625rem;
  color: #5C6B68;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.pct-pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background-color: #EBE8E2;
  border-radius: 99px;
  padding: 0.375rem;
}

.pct-pricing-toggle__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5C6B68;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
}

.pct-pricing-toggle__btn--active {
  background-color: #FFFFFF;
  color: #1C2B27;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.pct-pricing-toggle__save {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3D6B5E;
  background-color: #EEF4F2;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid #3D6B5E;
}

.pct-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pct-tier-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #D8D3CB;
  padding: 2rem;
  position: relative;
}

.pct-tier-card--featured {
  border-color: #3D6B5E;
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(61,107,94,0.15);
}

.pct-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3D6B5E;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.pct-tier-card__name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5C6B68;
  margin-bottom: 1rem;
}

.pct-tier-card__price-block {
  margin-bottom: 1.25rem;
}

.pct-tier-card__price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.75rem;
  color: #1C2B27;
  line-height: 1;
}

.pct-tier-card__price sup {
  font-size: 1.25rem;
  vertical-align: super;
  font-family: 'Manrope', system-ui, sans-serif;
}

.pct-tier-card__price-period {
  font-size: 0.875rem;
  color: #9EAAA6;
  font-family: 'Manrope', system-ui, sans-serif;
}

.pct-tier-card__price--custom {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.25rem;
  color: #1C2B27;
}

.pct-tier-card__best-for {
  font-size: 0.825rem;
  color: #9EAAA6;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pct-tier-card__divider {
  height: 1px;
  background-color: #D8D3CB;
  margin-bottom: 1.5rem;
}

.pct-tier-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pct-tier-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.4;
}

.pct-tier-card__check {
  color: #3D6B5E;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ accordion */
.pct-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.pct-faq__heading {
  grid-column: 1 / -1;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #1C2B27;
  margin-bottom: 2.5rem;
  text-align: center;
}

.pct-faq-item {
  border-top: 1px solid #D8D3CB;
}

.pct-faq-item:last-of-type {
  border-bottom: 1px solid #D8D3CB;
}

.pct-faq-item__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #1C2B27;
}

.pct-faq-item__question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1C2B27;
  line-height: 1.4;
}

.pct-faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #D8D3CB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #5C6B68;
  transition: transform 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.pct-faq-item.is-open .pct-faq-item__icon {
  transform: rotate(45deg);
  border-color: #3D6B5E;
  color: #3D6B5E;
}

.pct-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pct-faq-item.is-open .pct-faq-item__answer {
  max-height: 300px;
}

.pct-faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.65;
}

/* ============================================================
   21. ABOUT PAGE
   ============================================================ */

.pct-about-hero {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.pct-about-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4E8C7C;
  margin-bottom: 1rem;
}

.pct-about-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #E8E2D8;
  margin-bottom: 2rem;
  line-height: 1.15;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pct-about-hero__quote {
  font-size: 1.0625rem;
  color: #9EAAA6;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Story section */
.pct-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.pct-story__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #1C2B27;
  margin-bottom: 1.5rem;
}

.pct-story__body {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.75;
}

.pct-story__body p {
  margin-bottom: 1rem;
}

.pct-story__body p:last-child {
  margin-bottom: 0;
}

/* Team grid */
.pct-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pct-team-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pct-team-card__portrait-wrap {
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: 8px;
  background-color: #EBE8E2;
  margin-bottom: 1.25rem;
}

.pct-team-card__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.pct-team-card__portrait-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  color: #3D6B5E;
  background-color: #EEF4F2;
  border-radius: 8px;
}

.pct-team-card__name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.25rem;
}

.pct-team-card__title {
  font-size: 0.875rem;
  color: #3D6B5E;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pct-team-card__bio {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.6;
}

/* Values */
.pct-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pct-value-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D3CB;
  padding: 2rem;
}

.pct-value-card__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: #D8D3CB;
  margin-bottom: 1rem;
  line-height: 1;
}

.pct-value-card__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pct-value-card__body {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.6;
}

/* ============================================================
   22. CONTACT PAGE
   ============================================================ */

.pct-contact-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
}

.pct-contact-hero__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-contact-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: #1C2B27;
  margin-bottom: 1rem;
  max-width: 600px;
}

.pct-contact-hero__sub {
  font-size: 1.0625rem;
  color: #5C6B68;
  max-width: 500px;
  line-height: 1.65;
}

.pct-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 4rem;
  align-items: start;
}

.pct-contact-info {
  background-color: #F7F5F0;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid #D8D3CB;
}

.pct-contact-info__heading {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 1.5rem;
}

.pct-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.pct-contact-info__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: #EEF4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #3D6B5E;
  flex-shrink: 0;
}

.pct-contact-info__item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9EAAA6;
  margin-bottom: 0.25rem;
}

.pct-contact-info__item-value {
  font-size: 0.875rem;
  color: #1C2B27;
  line-height: 1.5;
}

.pct-contact-info__item-value a {
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-contact-form-panel {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #D8D3CB;
  padding: 2.5rem;
}

.pct-contact-form-panel__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: #1C2B27;
  margin-bottom: 0.5rem;
}

.pct-contact-form-panel__sub {
  font-size: 0.9rem;
  color: #9EAAA6;
  margin-bottom: 2rem;
}

/* Form elements */
.pct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pct-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.pct-form-group:last-of-type {
  margin-bottom: 0;
}

.pct-form-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: #1C2B27;
}

.pct-form-label span {
  color: #C9572B;
  margin-left: 2px;
}

.pct-form-input,
.pct-form-textarea,
.pct-form-select {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1.5px solid #D8D3CB;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #1C2B27;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.pct-form-input:focus,
.pct-form-textarea:focus,
.pct-form-select:focus {
  outline: none;
  border-color: #3D6B5E;
  box-shadow: 0 0 0 3px rgba(61,107,94,0.1);
}

.pct-form-input::placeholder,
.pct-form-textarea::placeholder {
  color: #9EAAA6;
}

.pct-form-textarea {
  resize: vertical;
  min-height: 110px;
}

.pct-form-submit-wrap {
  margin-top: 1.5rem;
}

/* ============================================================
   23. BLOG INDEX PAGE
   ============================================================ */

.pct-blog-hero {
  padding-top: 8rem;
  padding-bottom: 2rem;
}

.pct-blog-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pct-blog-hero__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: #1C2B27;
}

.pct-blog-hero__sub {
  font-size: 1rem;
  color: #5C6B68;
  margin-top: 0.5rem;
  max-width: 480px;
}


/* Featured article card */
.pct-blog-featured {
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background-color: #FFFFFF;
  border: 1px solid #D8D3CB;
  box-shadow: 0 4px 16px rgba(28,43,39,0.06);
  margin-bottom: 3rem;
}

.pct-blog-featured:hover {
  box-shadow: 0 8px 32px rgba(28,43,39,0.1);
}

.pct-blog-featured__img-wrap {
  overflow: hidden;
}

.pct-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.pct-blog-featured:hover .pct-blog-featured__img {
  transform: scale(1.03);
}

.pct-blog-featured__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.pct-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pct-blog-card-cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  background-color: #EEF4F2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3D6B5E;
}

.pct-blog-card-date {
  font-size: 0.8rem;
  color: #9EAAA6;
}

.pct-blog-featured__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #1C2B27;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pct-blog-featured__excerpt {
  font-size: 0.9375rem;
  color: #5C6B68;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pct-blog-featured__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pct-blog-featured__read-more:hover {
  color: #4E8C7C;
}

/* Blog card grid */
.pct-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pct-blog-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D3CB;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
  color: inherit;
}

.pct-blog-card:hover {
  box-shadow: 0 6px 24px rgba(28,43,39,0.1);
  color: inherit;
}

.pct-blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #EBE8E2;
}

.pct-blog-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16/9;
  transition: transform 0.3s ease;
}

.pct-blog-card:hover .pct-blog-card__img {
  transform: scale(1.04);
}

.pct-blog-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pct-blog-card__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1875rem;
  color: #1C2B27;
  line-height: 1.3;
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
}

.pct-blog-card:hover .pct-blog-card__title {
  color: #3D6B5E;
}

.pct-blog-card__excerpt {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.pct-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid #EBE8E2;
}

.pct-blog-card__read {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3D6B5E;
}

/* ============================================================
   24. BLOG ARTICLE PAGE
   ============================================================ */

.pct-article-hero {
  background-color: #F7F5F0;
  padding-top: 7rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #D8D3CB;
}

.pct-article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #9EAAA6;
  margin-bottom: 1.25rem;
}

.pct-article-hero__breadcrumb a {
  color: #3D6B5E;
}

.pct-article-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.pct-article-hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #1C2B27;
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.pct-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pct-article-hero__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C2B27;
}

.pct-article-hero__date {
  font-size: 0.875rem;
  color: #9EAAA6;
}

.pct-article-hero__read-time {
  font-size: 0.875rem;
  color: #9EAAA6;
}

.pct-article-cover-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.pct-article-cover {
  width: 100%;
  height: auto;
  border-radius: 8px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.pct-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.pct-article-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: #1C2B27;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.pct-article-body h3 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1C2B27;
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}

.pct-article-body p {
  font-size: 1.0625rem;
  color: #5C6B68;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.pct-article-body ul,
.pct-article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.pct-article-body ul { list-style: disc; }
.pct-article-body ol { list-style: decimal; }

.pct-article-body li {
  font-size: 1.0625rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.pct-article-body blockquote {
  border-left: 3px solid #3D6B5E;
  padding-left: 1.5rem;
  margin-left: 0;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: #5C6B68;
}

.pct-article-body pre {
  background-color: #1C2B27;
  border-radius: 6px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.pct-article-body pre code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  color: #E8E2D8;
  background: transparent;
  border: none;
  padding: 0;
}

.pct-article-body code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.875em;
  background-color: #EBE8E2;
  color: #1C2B27;
  padding: 2px 6px;
  border-radius: 3px;
}

.pct-article-body img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  height: auto;
}

.pct-article-related {
  border-top: 1px solid #D8D3CB;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  background-color: #F7F5F0;
}

.pct-article-related__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.75rem;
  color: #1C2B27;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pct-article-related__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   25. LEGAL PAGES
   ============================================================ */

.pct-legal-page main {
  background-color: #FFFFFF;
}

.pct-legal-hero {
  background-color: #F7F5F0;
  padding-top: 7rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #D8D3CB;
}

.pct-legal-hero__breadcrumb {
  font-size: 0.8rem;
  color: #9EAAA6;
  margin-bottom: 1rem;
}

.pct-legal-hero__breadcrumb a {
  color: #3D6B5E;
}

.pct-legal-hero__title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1C2B27;
  margin-bottom: 0.5rem;
}

.pct-legal-hero__updated {
  font-size: 0.875rem;
  color: #9EAAA6;
}

.pct-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  background-color: #FFFFFF;
}

.pct-legal-content h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: #1C2B27;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
}

.pct-legal-content h3 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1C2B27;
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.pct-legal-content p {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pct-legal-content ul,
.pct-legal-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.pct-legal-content ul { list-style: disc; }
.pct-legal-content ol { list-style: decimal; }

.pct-legal-content li {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.pct-legal-content a {
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-legal-content a:hover {
  color: #4E8C7C;
}

.pct-legal-content strong {
  color: #1C2B27;
}

/* ============================================================
   26. AUTH PAGES (LOGIN / REGISTER)
   ============================================================ */

.pct-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pct-auth-brand {
  background-color: #1C2B27;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.pct-auth-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(61,107,94,0.06) 40px,
      rgba(61,107,94,0.06) 41px
    );
  pointer-events: none;
}

.pct-auth-brand__logo {
  position: relative;
  z-index: 1;
}

.pct-auth-brand__logo img {
  height: 34px;
  width: auto;
}

.pct-auth-brand__content {
  position: relative;
  z-index: 1;
}

.pct-auth-brand__tagline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #E8E2D8;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.pct-auth-brand__sub {
  font-size: 1rem;
  color: #9EAAA6;
  line-height: 1.65;
  max-width: 380px;
}

.pct-auth-brand__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: #243530;
  border: 1px solid #2E403A;
  font-size: 0.8rem;
  color: #9EAAA6;
  position: relative;
  z-index: 1;
}

.pct-auth-brand__badge-icon {
  color: #4E8C7C;
}

.pct-auth-form-panel {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.pct-auth-form-wrap {
  width: 100%;
  max-width: 400px;
}

.pct-auth-form__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: #1C2B27;
  margin-bottom: 0.375rem;
}

.pct-auth-form__sub {
  font-size: 0.9rem;
  color: #9EAAA6;
  margin-bottom: 2rem;
}

.pct-auth-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.125rem;
}

.pct-auth-form__label {
  font-size: 0.825rem;
  font-weight: 600;
  color: #1C2B27;
}

.pct-auth-form__input {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1.5px solid #D8D3CB;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #1C2B27;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pct-auth-form__input:focus {
  outline: none;
  border-color: #3D6B5E;
  box-shadow: 0 0 0 3px rgba(61,107,94,0.1);
}

.pct-auth-form__input::placeholder {
  color: #9EAAA6;
}

.pct-auth-form__forgot {
  font-size: 0.8rem;
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 2px;
  float: right;
  margin-top: -0.75rem;
  margin-bottom: 1rem;
}

.pct-auth-form__forgot:hover {
  color: #4E8C7C;
}

.pct-auth-form__submit {
  width: 100%;
  margin-top: 1.5rem;
}

.pct-auth-form__divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.pct-auth-form__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #D8D3CB;
}

.pct-auth-form__divider span {
  position: relative;
  background-color: #FFFFFF;
  padding: 0 0.75rem;
  font-size: 0.8rem;
  color: #9EAAA6;
}

.pct-auth-form__switch {
  text-align: center;
  font-size: 0.875rem;
  color: #9EAAA6;
  margin-top: 1.5rem;
}

.pct-auth-form__switch a {
  color: #3D6B5E;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-auth-form__switch a:hover {
  color: #4E8C7C;
}

.pct-auth-form__legal {
  text-align: center;
  font-size: 0.775rem;
  color: #9EAAA6;
  margin-top: 1.25rem;
  line-height: 1.5;
}

.pct-auth-form__legal a {
  color: #5C6B68;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   27. SECTION-LEVEL HEADINGS + TEXT (theme-scoped)
   ============================================================ */

.pct-section--dark .pct-section-label,
.pct-section--dark-alt .pct-section-label {
  color: #4E8C7C;
}

.pct-section--light .pct-section-label,
.pct-section--white .pct-section-label,
.pct-section--mid .pct-section-label {
  color: #3D6B5E;
}

.pct-section--dark .pct-section-heading,
.pct-section--dark-alt .pct-section-heading {
  color: #E8E2D8;
}

.pct-section--light .pct-section-heading,
.pct-section--white .pct-section-heading,
.pct-section--mid .pct-section-heading {
  color: #1C2B27;
}

.pct-section--dark .pct-section-body,
.pct-section--dark-alt .pct-section-body {
  color: #9EAAA6;
}

.pct-section--light .pct-section-body,
.pct-section--white .pct-section-body,
.pct-section--mid .pct-section-body {
  color: #5C6B68;
}

.pct-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pct-section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.pct-section-body {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.pct-section-body--centered {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   28. COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: #1C2B27;
  border-top: 1px solid #2E403A;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem clamp(1.5rem, 5vw, 3rem);
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: #9EAAA6;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: #4E8C7C;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: 1.5px solid #9EAAA6;
  background-color: transparent;
  color: #E8E2D8;
}

.cookie-banner__btn:hover {
  background-color: #3D6B5E;
  border-color: #3D6B5E;
  color: #FFFFFF;
}

/* ============================================================
   29. SCROLL-REVEAL ANIMATIONS
   ============================================================ */

.pct-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pct-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pct-reveal--delay-1 { transition-delay: 0.1s; }
.pct-reveal--delay-2 { transition-delay: 0.2s; }
.pct-reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================================
   30. UTILITY CLASSES
   ============================================================ */

.pct-text-center { text-align: center; }
.pct-text-left   { text-align: left; }
.pct-mt-1  { margin-top: 0.5rem; }
.pct-mt-2  { margin-top: 1rem; }
.pct-mt-3  { margin-top: 1.5rem; }
.pct-mb-1  { margin-bottom: 0.5rem; }
.pct-mb-2  { margin-bottom: 1rem; }
.pct-mb-3  { margin-bottom: 1.5rem; }
.pct-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   31. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pct-feature-pair,
  .pct-product-module,
  .pct-api-section,
  .pct-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pct-feature-pair--reverse .pct-feature-pair__text,
  .pct-feature-pair--reverse .pct-feature-pair__visual,
  .pct-product-module--reverse .pct-product-module__text,
  .pct-product-module--reverse .pct-product-module__visual {
    order: unset;
  }

  .pct-stage-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pct-stage-detail--reverse .pct-stage-detail__text,
  .pct-stage-detail--reverse .pct-stage-detail__visual {
    order: unset;
  }

  .pct-int-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pct-roadmap {
    grid-template-columns: 1fr;
  }

  .pct-contact-layout {
    grid-template-columns: 1fr;
  }

  .pct-blog-featured {
    grid-template-columns: 1fr;
  }

  .pct-blog-featured__img-wrap {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 768px) {
  .pct-nav__links,
  .pct-nav__actions {
    display: none;
  }

  .pct-nav__hamburger {
    display: flex;
  }

  .pct-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pct-hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .pct-workflow__step-wrap {
    padding: 0 0.375rem;
  }

  .pct-workflow__track::before {
    display: none;
  }

  .pct-workflow__track {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .pct-process-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .pct-process-row::before {
    display: none;
  }

  .pct-pricing-tiers {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pct-team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .pct-values-grid {
    grid-template-columns: 1fr;
  }

  .pct-faq {
    grid-template-columns: 1fr;
  }

  .pct-blog-grid {
    grid-template-columns: 1fr;
  }

  .pct-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pct-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .pct-auth-page {
    grid-template-columns: 1fr;
  }

  .pct-auth-brand {
    min-height: 220px;
    padding: 2rem;
  }

  .pct-auth-brand__content {
    display: none;
  }

  .pct-auth-form-panel {
    padding: 2rem 1.5rem;
  }

  .pct-setup-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pct-setup-timeline::before {
    display: none;
  }

  .pct-sec-practice-grid {
    grid-template-columns: 1fr;
  }

  .pct-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pct-form-row {
    grid-template-columns: 1fr;
  }

  .pct-contact-form-panel {
    padding: 1.5rem;
  }

  .pct-int-grid {
    grid-template-columns: 1fr;
  }

  .pct-article-related__grid {
    grid-template-columns: 1fr;
  }

  .pct-blog-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }


  .pct-about-hero__heading {
    font-size: clamp(1.75rem, 5vw, 3rem);
  }
}

@media (max-width: 480px) {
  .pct-hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .pct-hero__ctas .pct-btn {
    width: 100%;
    justify-content: center;
  }

  .pct-pipeline-mock__stages {
    gap: 0.25rem;
  }

  .pct-pipeline-stage__name {
    font-size: 0.6rem;
  }

  .pct-cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pct-footer__legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================================
   SUPPLEMENT — merged from pct-supplement.css
   ============================================================ */
/* ============================================================
   pct-supplement.css
   Supplemental styles for components not covered in pct.css.
   brand_prefix: pct
   ============================================================ */

/* ============================================================
   A. SUBPAGE HERO
   ============================================================ */

.pct-subpage-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.pct-subpage-hero--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.pct-subpage-hero--with-stat {
  grid-template-columns: 1.2fr 1fr;
}

.pct-subpage-hero--about {
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
}

.pct-subpage-hero--security {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.pct-subpage-hero__content {
  display: flex;
  flex-direction: column;
}

.pct-subpage-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4E8C7C;
  margin-bottom: 1rem;
}

.pct-section--light .pct-subpage-hero__eyebrow,
.pct-section--white .pct-subpage-hero__eyebrow {
  color: #3D6B5E;
}

.pct-subpage-hero__h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: #E8E2D8;
  margin-bottom: 1.25rem;
}

.pct-section--light .pct-subpage-hero__h1,
.pct-section--white .pct-subpage-hero__h1 {
  color: #1C2B27;
}

.pct-subpage-hero__sub {
  font-size: 1.0625rem;
  color: #9EAAA6;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2rem;
}

.pct-section--light .pct-subpage-hero__sub,
.pct-section--white .pct-subpage-hero__sub {
  color: #5C6B68;
}

.pct-subpage-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   B. SECTION HEADER + SECTION SUB
   ============================================================ */

.pct-section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pct-section-header--centered {
  text-align: center;
}

.pct-section-header--left {
  text-align: left;
}

.pct-section-sub {
  font-size: 1.0625rem;
  color: #5C6B68;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.pct-section-header--centered .pct-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.pct-section--dark .pct-section-sub,
.pct-section--dark-alt .pct-section-sub {
  color: #9EAAA6;
}

/* ============================================================
   C. FOUNDER PULL QUOTE
   ============================================================ */

.pct-founder-pull {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #3D6B5E;
  border-radius: 8px;
  padding: 2rem 2rem 1.5rem;
  max-width: 420px;
}

.pct-section--light .pct-founder-pull,
.pct-section--white .pct-founder-pull {
  background-color: #F7F5F0;
  border: 1px solid #D8D3CB;
  border-left: 3px solid #3D6B5E;
}

.pct-founder-pull__quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #E8E2D8;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pct-section--light .pct-founder-pull__quote,
.pct-section--white .pct-founder-pull__quote {
  color: #1C2B27;
}

.pct-founder-pull__attribution {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4E8C7C;
}

/* ============================================================
   D. ABOUT STORY SECTION
   ============================================================ */

.pct-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.pct-about-story__col {
  display: flex;
  flex-direction: column;
}

.pct-about-story__col p {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.pct-about-story__col p:last-of-type {
  margin-bottom: 1.5rem;
}

.pct-about-story__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.pct-about-story__tag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3D6B5E;
  background-color: #EEF4F2;
  padding: 0.35rem 0.875rem;
  border-radius: 99px;
}

/* Team card info (alternate inner class) */
.pct-team-card__info {
  display: flex;
  flex-direction: column;
}

.pct-team-card__portrait {
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: 8px;
  background-color: #EBE8E2;
  margin-bottom: 1.25rem;
}

.pct-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ============================================================
   E. AUTH LAYOUT (pct-auth-layout / pct-auth-panel / pct-auth-card)
   ============================================================ */

.pct-auth-layout {
  display: contents;
}

.pct-auth-panel {
  background-color: #1C2B27;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.pct-auth-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(61,107,94,0.06) 40px,
    rgba(61,107,94,0.06) 41px
  );
  pointer-events: none;
}

.pct-auth-panel__logo {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
}

.pct-auth-panel__content {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.pct-auth-panel__ornament {
  margin-bottom: 2rem;
}

.pct-auth-panel__tagline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #E8E2D8;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.pct-auth-panel__sub {
  font-size: 0.9375rem;
  color: #9EAAA6;
  line-height: 1.65;
  max-width: 380px;
}

.pct-auth-card-wrap {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.pct-auth-card {
  width: 100%;
  max-width: 400px;
}

.pct-auth-card__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: #1C2B27;
  margin-bottom: 0.375rem;
}

.pct-auth-card__sub {
  font-size: 0.9rem;
  color: #9EAAA6;
  margin-bottom: 2rem;
}

.pct-auth-card__switch {
  text-align: center;
  font-size: 0.875rem;
  color: #9EAAA6;
  margin-top: 1.5rem;
}

.pct-auth-card__switch a {
  color: #3D6B5E;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-auth-card__legal {
  text-align: center;
  font-size: 0.775rem;
  color: #9EAAA6;
  margin-top: 1.25rem;
  line-height: 1.5;
}

.pct-auth-card__legal a {
  color: #5C6B68;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-auth-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pct-auth-submit {
  width: 100%;
  margin-top: 1.25rem;
}

/* ============================================================
   F. PIPELINE MINI (auth ornament)
   ============================================================ */

.pct-pipeline-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.pct-pipeline-mini__stage {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #2E403A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #9EAAA6;
  background-color: #243530;
  flex-shrink: 0;
}

.pct-pipeline-mini__stage--done {
  background-color: #3D6B5E;
  border-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-pipeline-mini__stage--active {
  background-color: #4E8C7C;
  border-color: #4E8C7C;
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(78,140,124,0.2);
}

.pct-pipeline-mini__line {
  flex: 1;
  height: 2px;
  background-color: #2E403A;
  min-width: 24px;
}

/* ============================================================
   G. LEGAL SECTION + ARTICLE
   ============================================================ */

.pct-legal-section {
  min-height: 80vh;
}

.legal-article {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid #D8D3CB;
}

.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #D8D3CB;
}

.legal-header h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1C2B27;
  margin-bottom: 0.75rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: #9EAAA6;
  margin-bottom: 0.25rem;
}

.legal-article section {
  margin-bottom: 2rem;
}

.legal-article h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: #1C2B27;
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}

.legal-article h3 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1C2B27;
  margin-top: 1.5rem;
  margin-bottom: 0.625rem;
}

.legal-article p {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.legal-article ul { list-style: disc; }
.legal-article ol { list-style: decimal; }

.legal-article li {
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-article a {
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-article strong {
  color: #1C2B27;
}

.legal-article address {
  font-style: normal;
  font-size: 1rem;
  color: #5C6B68;
  line-height: 1.75;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.legal-table th,
.legal-table td {
  padding: 0.625rem 0.875rem;
  border: 1px solid #D8D3CB;
  text-align: left;
  color: #5C6B68;
  vertical-align: top;
}

.legal-table th {
  background-color: #F7F5F0;
  font-weight: 700;
  color: #1C2B27;
}

/* ============================================================
   H. BLOG PAGE ADDITIONS
   ============================================================ */

.pct-blog-header {
  padding-top: 8rem;
  padding-bottom: 0;
}

#blog-hero {
  padding-bottom: 3rem;
}

.pct-blog-header__text {
  max-width: 640px;
}

.pct-blog-cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  background-color: #EEF4F2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3D6B5E;
}

.pct-blog-date {
  font-size: 0.8rem;
  color: #9EAAA6;
}

.pct-blog-read {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3D6B5E;
}

.pct-blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pct-blog-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pct-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.pct-blog-card__body {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.pct-blog-content {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.pct-nav__link--active {
  color: #3D6B5E;
}

.pct-page--dark-top .pct-nav__link--active {
  color: #4E8C7C;
}

/* ============================================================
   I. ARTICLE SPECIFIC
   ============================================================ */

.pct-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3D6B5E;
  margin-bottom: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pct-article-back:hover {
  color: #4E8C7C;
}

.pct-article-cta {
  background-color: #1C2B27;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.pct-article-cta__text {
  max-width: 560px;
  margin: 0 auto;
}

.pct-article-cta__heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #E8E2D8;
  margin-bottom: 0.875rem;
}

.pct-article-cta__sub {
  font-size: 1rem;
  color: #9EAAA6;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.pct-article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #EBE8E2;
  flex-shrink: 0;
}

.pct-article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.pct-article-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1C2B27;
}

.pct-article-author-role {
  font-size: 0.8rem;
  color: #9EAAA6;
}

/* ============================================================
   J. PRICING GRID ALIASES
   ============================================================ */

.pct-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pct-pricing-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #D8D3CB;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pct-pricing-card--featured {
  border-color: #3D6B5E;
  box-shadow: 0 8px 32px rgba(61,107,94,0.15);
}

.pct-pricing-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 99px;
  background-color: #3D6B5E;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1rem;
  width: fit-content;
}

.pct-pricing-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #EBE8E2;
}

.pct-pricing-card__name {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.pct-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pct-pricing-card__amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  color: #1C2B27;
  line-height: 1;
}

.pct-pricing-card__amount--custom {
  font-size: 2rem;
}

.pct-pricing-card__period {
  font-size: 0.875rem;
  color: #9EAAA6;
}

.pct-pricing-card__seats {
  font-size: 0.8rem;
  color: #9EAAA6;
  margin-top: 0.25rem;
}

.pct-pricing-card__best-for {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.pct-pricing-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.pct-pricing-card__cta {
  margin-top: auto;
}

.pct-pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: #9EAAA6;
  margin-top: 1.5rem;
}

.pct-pricing-toggle__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 99px;
  background-color: #EEF4F2;
  font-size: 0.75rem;
  font-weight: 700;
  color: #3D6B5E;
  border: 1px solid #3D6B5E;
}

.pct-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.pct-faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pct-faq-item.is-open .pct-faq-item__body {
  max-height: 300px;
}

/* ============================================================
   K. SECURITY PAGE ADDITIONS
   ============================================================ */

.pct-security-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2rem;
}

.pct-security-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: #9EAAA6;
}

.pct-security-mark i {
  color: #4E8C7C;
}

.pct-security-hero-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.pct-security-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pct-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pct-security-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #D8D3CB;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}

.pct-security-card:hover {
  box-shadow: 0 4px 16px rgba(28,43,39,0.08);
}

.pct-security-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #EEF4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #3D6B5E;
  margin-bottom: 1rem;
}

.pct-security-card__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.625rem;
}

.pct-security-card__body {
  font-size: 0.875rem;
  color: #5C6B68;
  line-height: 1.6;
}

.pct-roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pct-roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid #D8D3CB;
}

.pct-roadmap-item:last-child {
  border-bottom: none;
}

.pct-roadmap-item__marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #FFFFFF;
}

.pct-roadmap-item--done .pct-roadmap-item__marker {
  background-color: #3D6B5E;
}

.pct-roadmap-item--planned .pct-roadmap-item__marker {
  background-color: #9EAAA6;
}

.pct-roadmap-item__content {
  display: flex;
  flex-direction: column;
}

.pct-roadmap-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.pct-roadmap-item--done .pct-roadmap-item__label {
  color: #3D6B5E;
}

.pct-roadmap-item--planned .pct-roadmap-item__label {
  color: #9EAAA6;
}

.pct-roadmap-item__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.25rem;
}

.pct-roadmap-item__body {
  font-size: 0.8125rem;
  color: #5C6B68;
  line-height: 1.55;
}

/* ============================================================
   L. PROCESS DIAGRAM (how-it-works)
   ============================================================ */

.pct-process-diagram {
  display: flex;
  gap: 0;
  position: relative;
}

.pct-process-diagram::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #D8D3CB;
  z-index: 0;
}

.pct-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}

.pct-process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #3D6B5E;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border: 4px solid #FFFFFF;
  box-shadow: 0 0 0 2px #D8D3CB;
}

.pct-process-step__icon {
  font-size: 1.5rem;
  color: #3D6B5E;
  margin-bottom: 0.75rem;
}

.pct-process-step__title {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1C2B27;
  margin-bottom: 0.5rem;
}

.pct-process-step__body {
  font-size: 0.8125rem;
  color: #5C6B68;
  line-height: 1.55;
}

/* Approval chain */
.pct-approval-chain {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pct-approval-step {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid #2E403A;
}

.pct-section--light .pct-approval-step,
.pct-section--white .pct-approval-step {
  background-color: #F7F5F0;
  border: 1px solid #D8D3CB;
}

.pct-approval-step--done {
  background-color: rgba(61,107,94,0.1);
  border-color: rgba(61,107,94,0.3);
}

.pct-approval-step--active {
  background-color: rgba(78,140,124,0.15);
  border-color: #4E8C7C;
  box-shadow: 0 0 0 3px rgba(78,140,124,0.15);
}

.pct-approval-step__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.pct-approval-step--done .pct-approval-step__icon {
  background-color: #3D6B5E;
  color: #FFFFFF;
}

.pct-approval-step--active .pct-approval-step__icon {
  background-color: #4E8C7C;
  color: #FFFFFF;
}

.pct-approval-step__icon {
  background-color: #2E403A;
  color: #9EAAA6;
}

.pct-section--light .pct-approval-step__icon {
  background-color: #EBE8E2;
  color: #5C6B68;
}

.pct-approval-step__info {
  flex: 1;
}

.pct-approval-step__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #E8E2D8;
}

.pct-section--light .pct-approval-step__name,
.pct-section--white .pct-approval-step__name {
  color: #1C2B27;
}

.pct-approval-step__status {
  font-size: 0.75rem;
  color: #9EAAA6;
}

/* ============================================================
   M. CODE BLOCK SYNTAX SPANS
   ============================================================ */

.pct-code-block {
  background-color: #1C2B27;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
}

.pct-code-block pre {
  padding: 1.5rem;
  overflow-x: auto;
}

.pct-code-kw  { color: #4E8C7C; }
.pct-code-url { color: #E8C874; }
.pct-code-header { color: #9EAAA6; }
.pct-code-val { color: #A8D5A2; }
.pct-code-brace { color: #E8E2D8; }
.pct-code-key { color: #9EAAA6; }
.pct-code-str { color: #A8D5A2; }
.pct-code-colon { color: #E8E2D8; }
.pct-code-num { color: #C9572B; }

/* ============================================================
   N. INTEGRATION HERO MARKS
   ============================================================ */

.pct-int-hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.pct-int-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background-color: #F7F5F0;
  border: 1px solid #D8D3CB;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5C6B68;
}

.pct-int-hero-mark i {
  font-size: 1rem;
  color: #3D6B5E;
}

.pct-int-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 99px;
  background-color: #EEF4F2;
  font-size: 0.7rem;
  font-weight: 600;
  color: #3D6B5E;
  margin-top: 0.875rem;
}

/* ============================================================
   O. PRODUCT PILLS + ROUTING RULES
   ============================================================ */

.pct-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.pct-product-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  border-radius: 99px;
  background-color: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: #9EAAA6;
}

.pct-product-pill i {
  color: #4E8C7C;
  font-size: 0.75rem;
}

.pct-routing-rule {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid #2E403A;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
}

.pct-section--light .pct-routing-rule,
.pct-section--white .pct-routing-rule {
  background-color: #F7F5F0;
  border: 1px solid #D8D3CB;
}

.pct-routing-rule--default {
  border-style: dashed;
  opacity: 0.7;
}

.pct-routing-rule__if {
  font-weight: 700;
  color: #4E8C7C;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pct-routing-rule__then {
  color: #E8E2D8;
  flex: 1;
}

.pct-section--light .pct-routing-rule__then,
.pct-section--white .pct-routing-rule__then {
  color: #1C2B27;
}

/* ============================================================
   P. STAT FRAGMENT (how-it-works hero)
   ============================================================ */

.pct-stat-fragment {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pct-section--light .pct-stat-fragment,
.pct-section--white .pct-stat-fragment {
  background-color: #FFFFFF;
  border: 1px solid #D8D3CB;
  box-shadow: 0 4px 16px rgba(28,43,39,0.06);
}

.pct-stat-fragment__item {
  display: flex;
  flex-direction: column;
}

.pct-stat-fragment__num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #E8E2D8;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pct-section--light .pct-stat-fragment__num,
.pct-section--white .pct-stat-fragment__num {
  color: #1C2B27;
}

.pct-stat-fragment__label {
  font-size: 0.8125rem;
  color: #9EAAA6;
  line-height: 1.5;
}

.pct-section--light .pct-stat-fragment__label,
.pct-section--white .pct-stat-fragment__label {
  color: #5C6B68;
}

.pct-stat-fragment__divider {
  height: 1px;
  background-color: rgba(255,255,255,0.08);
}

.pct-section--light .pct-stat-fragment__divider,
.pct-section--white .pct-stat-fragment__divider {
  background-color: #D8D3CB;
}

/* ============================================================
   Q. CONTACT PAGE ADDITIONS
   ============================================================ */

.pct-contact-hero__text {
  max-width: 560px;
}

.pct-contact-hero__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pct-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pct-contact-quick__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #D8D3CB;
  border-radius: 6px;
}

.pct-contact-quick__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9EAAA6;
  margin-bottom: 0.125rem;
}

.pct-contact-quick__val {
  font-size: 0.875rem;
  color: #1C2B27;
  font-weight: 500;
}

.pct-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 4rem;
  align-items: start;
}

.pct-contact-form {
  display: flex;
  flex-direction: column;
}

.pct-contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pct-contact-info__response {
  font-size: 0.8rem;
  color: #9EAAA6;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #D8D3CB;
  line-height: 1.5;
}

/* ============================================================
   R. FORM LABEL ROW
   ============================================================ */

.pct-form-label--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pct-form-label__link {
  font-size: 0.775rem;
  font-weight: 600;
  color: #3D6B5E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   S. RESPONSIVE SUPPLEMENT
   ============================================================ */

@media (max-width: 1024px) {
  .pct-subpage-hero,
  .pct-subpage-hero--with-stat,
  .pct-subpage-hero--about,
  .pct-subpage-hero--security {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pct-about-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pct-security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pct-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pct-contact-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pct-auth-layout {
    grid-template-columns: 1fr;
  }

  .pct-auth-panel {
    min-height: 200px;
    padding: 2rem;
  }

  .pct-auth-panel__content {
    display: none;
  }

  .pct-auth-card-wrap {
    padding: 2rem 1.5rem;
  }

  .pct-security-grid {
    grid-template-columns: 1fr;
  }

  .pct-process-diagram {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pct-process-diagram::before {
    display: none;
  }

  .pct-process-step {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
  }

  .pct-faq-grid {
    grid-template-columns: 1fr;
  }

  .pct-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pct-roadmap-timeline {
    gap: 0;
  }
}
