/* ==========================================================================
   process.css — Process Page Styles
   First Step Engineering Consultancy
   Design: Cream/parchment base with selective dark navy sections
   ========================================================================== */

/* ============================================================
   LIGHT NAVBAR MODIFIER (.kt-nav-light)
   ============================================================ */
.kt-nav-light {
  background: rgba(244, 242, 237, 0) !important;
}

.kt-nav-light.scrolled {
  background: rgba(244, 242, 237, 0.97) !important;
  border-bottom-color: rgba(14, 26, 43, 0.08) !important;
  backdrop-filter: blur(20px);
}

.kt-nav-light .kl {
  color: rgba(14, 26, 43, 0.6) !important;
}

.kt-nav-light .kl:hover,
.kt-nav-light .kl.active {
  color: var(--gold, #C8860A) !important;
}

.kt-nav-light .kn-logo-text span:first-child {
  color: #06101E !important;
}

.kt-nav-light .kn-logo-text span:last-child {
  color: rgba(6, 16, 30, 0.5) !important;
}

.kt-nav-light .kn-logo-box {
  background: var(--gold, #C8860A) !important;
}

.kt-nav-light .kn-ham span {
  background: #06101E !important;
}

.kt-nav-light .kn-cta {
  border-color: rgba(14, 26, 43, 0.3) !important;
  color: #06101E !important;
}

.kt-nav-light .kn-cta:hover {
  background: #06101E !important;
  color: #fff !important;
  border-color: #06101E !important;
}

/* ============================================================
   SECTION 1: HERO — CREAM/PARCHMENT
   ============================================================ */
.proc-hero {
  position: relative;
  min-height: 100vh;
  background: #F4F2ED;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.proc-hero-bg {
  position: absolute;
  inset: 0;
}

.proc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.55) sepia(0.25) brightness(0.88);
}

/* Left = solid cream (matches page bg), right = photo fully visible */
.proc-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #F4F2ED 0%,
    #F4F2ED 28%,
    rgba(244, 242, 237, 0.7) 52%,
    rgba(244, 242, 237, 0.08) 100%
  );
}

.proc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 26, 43, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 26, 43, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  /* Fade the grid out on the right so it doesn't overlay the photo */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 65%);
  mask-image: linear-gradient(to right, black 0%, black 40%, transparent 65%);
}

.proc-hero-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(14, 26, 43, 0.015) 3px,
    rgba(14, 26, 43, 0.015) 4px
  );
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 65%);
  mask-image: linear-gradient(to right, black 0%, black 40%, transparent 65%);
}

.proc-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding-top: calc(var(--nav-h, 72px) + 80px);
  padding-bottom: 80px;
  width: 100%;
}

.proc-hero-left {
  flex: 1;
  max-width: 560px;
}

/* Document-style label row */
.proc-doc-label {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.pdl-ref,
.pdl-date,
.pdl-status {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(14, 26, 43, 0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.pdl-status {
  color: rgba(200, 134, 10, 0.8);
}

/* Hero title stack */
.proc-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 28px;
}

.proc-title-sm {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 13px;
  color: rgba(14, 26, 43, 0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.proc-title-lg {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 110px);
  text-transform: uppercase;
  color: #06101E;
  line-height: 0.85;
  letter-spacing: -3px;
  display: block;
}

.proc-title-outline {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 110px);
  text-transform: uppercase;
  -webkit-text-stroke: 2.5px rgba(6, 16, 30, 0.2);
  color: transparent;
  line-height: 0.85;
  letter-spacing: -3px;
  display: block;
}

.proc-hero-sub {
  font-size: 17px;
  color: rgba(14, 26, 43, 0.6);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 0 28px;
}

/* Breadcrumb */
.proc-breadcrumb {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 10px;
  color: rgba(14, 26, 43, 0.4);
  letter-spacing: 1.5px;
}

.proc-breadcrumb a {
  color: rgba(14, 26, 43, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.proc-breadcrumb a:hover {
  color: var(--gold, #C8860A);
}

.proc-breadcrumb i {
  font-size: 8px;
  color: rgba(14, 26, 43, 0.3);
}

/* Hero right — index card */
.proc-hero-right {
  flex-shrink: 0;
  width: 340px;
}

.proc-index-card {
  background: #06101E;
  padding: 0;
  border-left: 3px solid var(--gold, #C8860A);
}

.pic-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pic-title {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.pic-rev {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(200, 134, 10, 0.6);
  letter-spacing: 2px;
}

.pic-list {
  padding: 8px 0;
}

.pic-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.pic-item:hover {
  background: rgba(200, 134, 10, 0.08);
}

.pic-num {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 10px;
  color: rgba(200, 134, 10, 0.7);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.pic-name {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.pic-footer {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pic-footer span {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pic-footer-val {
  color: rgba(200, 134, 10, 0.8) !important;
}

/* Hero bottom rule & corner marks */
.proc-hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(14, 26, 43, 0.1);
}

.proc-corner-mark {
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(14, 26, 43, 0.2);
}

.proc-corner-tl {
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.proc-corner-tr {
  right: 40px;
  border-left: none;
  border-bottom: none;
}

/* ============================================================
   STICKY PROGRESS BAR
   ============================================================ */
.proc-progress-bar {
  position: sticky;
  top: var(--nav-h, 72px);
  z-index: 89;
  background: #F4F2ED;
  border-bottom: 1px solid rgba(14, 26, 43, 0.08);
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
  overflow: hidden;
}

.proc-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gold, #C8860A);
  width: 0%;
  transition: width 0.4s ease;
  z-index: 2;
}

.proc-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  height: 100%;
}

.proc-step-dot {
  flex: 1;
  height: 100%;
  background: none;
  border: none;
  border-right: 1px solid rgba(14, 26, 43, 0.06);
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(14, 26, 43, 0.35);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0 16px;
  text-align: center;
  text-transform: uppercase;
}

.proc-step-dot:last-child {
  border-right: none;
}

.proc-step-dot.active {
  color: #06101E;
  background: rgba(200, 134, 10, 0.06);
  font-weight: 600;
}

.proc-step-dot:hover {
  color: #06101E;
  background: rgba(14, 26, 43, 0.04);
}

/* ============================================================
   PHASES SECTION
   ============================================================ */
.proc-phases {
  position: relative;
}

.proc-phases-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(14, 26, 43, 0.04) 1px, transparent 1px);
  background-size: 100% 80px;
}

.proc-phase {
  background: #F4F2ED;
  padding: 100px 0;
  border-bottom: 1px solid rgba(14, 26, 43, 0.07);
  position: relative;
}

.proc-phase-alt {
  background: #EDEAE3;
}

.proc-phase-last {
  border-bottom: none;
}

/* Phase inner layout */
.proc-phase-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Aside — vertical numbering rail */
.proc-phase-aside {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.proc-phase-num {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: rgba(6, 16, 30, 0.08);
  line-height: 1;
  letter-spacing: -2px;
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.proc-phase-spine {
  flex: 1;
  width: 1px;
  background: rgba(14, 26, 43, 0.12);
  min-height: 60px;
  margin: 8px 0;
}

.proc-phase-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold, #C8860A);
  border: 3px solid #F4F2ED;
  box-shadow: 0 0 0 1px var(--gold, #C8860A);
  flex-shrink: 0;
}

.proc-phase-node-last {
  background: #06101E;
  box-shadow: 0 0 0 1px rgba(6, 16, 30, 0.5);
}

/* Phase body */
.proc-phase-body {
  flex: 1;
  min-width: 0;
}

.proc-phase-head {
  margin-bottom: 40px;
}

.proc-phase-tag {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(200, 134, 10, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.proc-phase-title {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  color: #06101E;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
  line-height: 1;
}

.proc-title-accent {
  color: var(--gold, #C8860A);
}

.proc-phase-intro {
  font-size: 16px;
  color: rgba(14, 26, 43, 0.6);
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
}

/* Activity list */
.proc-activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-activity {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(14, 26, 43, 0.07);
}

.proc-activity:last-child {
  border-bottom: none;
}

.pa-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 134, 10, 0.1);
  color: var(--gold, #C8860A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(200, 134, 10, 0.2);
}

.pa-body {
  flex: 1;
}

.pa-title {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #06101E;
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}

.pa-desc {
  font-size: 13px;
  color: rgba(14, 26, 43, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* Output cards */
.proc-output-card {
  background: #06101E;
  overflow: hidden;
}

.proc-output-gold {
  border-top: 3px solid var(--gold, #C8860A);
}

.poc-img-wrap {
  position: relative;
}

.poc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.85);
}

.poc-img-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: rgba(6, 16, 30, 0.8);
  padding: 5px 10px;
}

.poc-content {
  padding: 24px;
}

.poc-label {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.poc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.poc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

.poc-list li i {
  color: var(--gold, #C8860A);
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================================================
   WHY SECTION — DARK NAVY
   ============================================================ */
.proc-why {
  background: #06101E;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.proc-why-blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 134, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 134, 10, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.proc-why-header {
  text-align: center;
  margin-bottom: 64px;
}

/* 4-up grid override so cards stay on one line at desktop */
.proc-why .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 992px) {
  .proc-why .row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.proc-why .row > [class*="col-"] {
  width: 100%;
  max-width: 100%;
}

.proc-why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
}

.proc-why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 134, 10, 0.2);
  transform: translateY(-4px);
}

.pwc-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 134, 10, 0.1);
  color: var(--gold, #C8860A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(200, 134, 10, 0.2);
  flex-shrink: 0;
}

.pwc-title {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pwc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ============================================================
   FAQ SECTION — CREAM
   ============================================================ */
.proc-faq {
  background: #F4F2ED;
  padding: 120px 0;
  position: relative;
}

.proc-faq-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14, 26, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 26, 43, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.proc-faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.proc-faq-head {
  text-align: center;
  margin-bottom: 56px;
}

.proc-faq-head .sec-label {
  display: inline-block;
}

.proc-faq-title {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  color: #06101E;
  letter-spacing: -2px;
  line-height: 1;
  margin: 0 0 16px;
}

.proc-faq-sub {
  font-size: 15px;
  color: rgba(14, 26, 43, 0.55);
  line-height: 1.7;
  margin: 0 0 32px;
}

/* FAQ accordion */
.proc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-faq-item {
  border-bottom: 1px solid rgba(14, 26, 43, 0.1);
}

.proc-faq-item:first-child {
  border-top: 1px solid rgba(14, 26, 43, 0.1);
}

.proc-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.proc-faq-q span {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #06101E;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.pfq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(14, 26, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(14, 26, 43, 0.5);
  font-size: 14px;
  transition: all 0.3s;
}

.proc-faq-item.open .pfq-icon {
  background: #06101E;
  border-color: #06101E;
  color: var(--gold, #C8860A);
  transform: rotate(45deg);
}

.proc-faq-a {
  font-size: 14px;
  color: rgba(14, 26, 43, 0.6);
  line-height: 1.7;
  padding: 0 0 22px;
  display: none;
}

.proc-faq-item.open .proc-faq-a {
  display: block;
}

/* ============================================================
   CTA SECTION — DARK NAVY
   ============================================================ */
.sec-cta {
  background: #06101E;
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 134, 10, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #fff;
  line-height: 0.95;
  margin: 0 0 24px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER EXTRA CLASSES
   (base .fse-footer / .footer-* defined in hero-02-kinetic.css;
    these are the additions unique to this page)
   ============================================================ */
.footer-top-border {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold, #C8860A), transparent);
  display: block;
}

.footer-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold, #C8860A);
  color: #fff;
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  display: block;
}

.footer-logo-tag {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  display: block;
}

.footer-about {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin: 0;
}

.footer-certs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cert {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-cert i {
  color: var(--gold, #C8860A);
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  text-decoration: none;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--gold, #C8860A);
  color: var(--gold, #C8860A);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--gold, #C8860A);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.footer-cta-btn {
  display: inline-flex;
  gap: 8px;
  padding: 13px 24px;
  background: var(--gold, #C8860A);
  color: #fff;
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
}

.footer-cta-btn:hover {
  background: #a36d07;
  color: #fff;
}

.footer-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 60px 0 40px;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-divider-icon {
  flex-shrink: 0;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-head, 'Montserrat'), sans-serif;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-legal-link {
  font-family: var(--font-mono, 'IBM Plex Mono'), monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1.5px;
}

.footer-legal-link {
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold, #C8860A);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .proc-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .proc-hero-right {
    width: 100%;
    max-width: 400px;
  }

  .proc-hero-left {
    max-width: 100%;
  }

  .proc-phase-aside {
    display: none;
  }

  .proc-why-card {
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .proc-hero-inner {
    padding-top: calc(var(--nav-h, 72px) + 48px);
    padding-bottom: 48px;
    gap: 40px;
  }

  .proc-progress-steps {
    gap: 0;
  }

  .proc-step-dot {
    font-size: 8px;
    padding: 0 8px;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .proc-why {
    padding: 80px 0;
  }

  .proc-faq {
    padding: 80px 0;
  }

  .sec-cta {
    padding: 80px 0;
  }

  .proc-phase {
    padding: 80px 0;
  }

  .footer-divider {
    margin: 40px 0 28px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .proc-hero-inner {
    padding-top: calc(var(--nav-h, 72px) + 40px);
    padding-bottom: 40px;
    gap: 32px;
  }

  .proc-title-lg,
  .proc-title-outline {
    font-size: clamp(52px, 16vw, 72px);
    letter-spacing: -2px;
  }

  .proc-hero-sub {
    font-size: 15px;
  }

  .proc-phase {
    padding: 60px 0;
  }

  .proc-phase-head {
    margin-bottom: 28px;
  }

  .proc-why {
    padding: 60px 0;
  }

  .proc-faq {
    padding: 60px 0;
  }

  .sec-cta {
    padding: 60px 0;
  }

  .proc-why-header {
    margin-bottom: 40px;
  }

  .proc-why-card {
    padding: 28px 20px;
  }

  .cta-glow {
    width: 300px;
    height: 300px;
  }

  .proc-hero-right {
    max-width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .proc-activity {
    gap: 14px;
  }

  .pa-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}
