/* ============================================
   BOLDBLACK DESIGNS — HOW IT WORKS PAGE
   Clean, bright, professional — matches services
   ============================================ */

.light-page { background: #ffffff; color: #0a0a0a; }

/* ---- Buttons ---- */
.proc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid #0a0a0a;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.proc-btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.proc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(6px);
}
.proc-btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.proc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: transparent;
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 2px solid #0a0a0a;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.proc-btn-secondary:hover {
  background: #0a0a0a;
  color: #fff;
}

/* Eyebrow label */
.proc-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   HERO — IMAGE WITH OVERLAY
   ============================================ */
.proc-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.proc-hero-bg {
  position: absolute;
  inset: 0;
}
.proc-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.proc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.88) 100%
  );
}

.proc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 48px 0;
}

.proc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.proc-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.proc-breadcrumb a:hover { color: var(--accent-2); }
.proc-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }

.proc-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 640px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.proc-title-gold { color: var(--accent-2); }
.proc-text-gold  { color: var(--accent-2); }

.proc-hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}
.proc-hero-sub strong { color: var(--accent-2); font-weight: 600; }

.proc-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

/* ============================================
   TRUST BAR
   ============================================ */
.proc-trust-bar {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.proc-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
}
.proc-trust-item svg { stroke: var(--accent-2); flex-shrink: 0; }
.proc-trust-sep { color: rgba(255,255,255,0.2); font-size: 18px; }

/* ============================================
   STEP SPLIT SECTIONS
   ============================================ */
.proc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
}
.proc-split-alt {
  background: #f7f7f5;
}
.proc-split-alt .proc-split-img { order: 2; }
.proc-split-alt .proc-split-text { order: 1; }

/* Image column */
.proc-split-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.proc-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.proc-split:hover .proc-split-img img { transform: scale(1.04); }

/* Step number watermark */
.proc-step-num {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.05em;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Step badge */
.proc-step-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.proc-badge-gold {
  background: var(--accent-2);
  color: #0a0a0a;
}

/* Text column */
.proc-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
}

.proc-split-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  color: #0a0a0a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.proc-lead {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 24px;
}
.proc-lead strong { color: #0a0a0a; }

/* Highlight box for step 02 */
.proc-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8ee;
  border: 1px solid rgba(200,169,110,0.35);
  border-left: 4px solid var(--accent-2);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.proc-highlight-box svg { stroke: var(--accent-2); flex-shrink: 0; margin-top: 2px; }
.proc-highlight-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
.proc-highlight-box strong { color: #0a0a0a; }

/* Feature list */
.proc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  border-top: 1px solid #e8e8e8;
}
.proc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: padding-left 0.2s;
}
.proc-list li:hover { padding-left: 6px; }

.proc-list-icon {
  width: 26px; height: 26px;
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s;
}
.proc-list li:hover .proc-list-icon { background: var(--accent-2); }
.proc-list li:hover .proc-list-icon svg { stroke: #0a0a0a; }

.proc-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 2px;
}
.proc-list span {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* ============================================
   WHY US — STATS SECTION
   ============================================ */
.proc-why {
  background: #f7f7f5;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 88px 0;
}
.proc-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.proc-why-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  color: #0a0a0a;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.proc-why-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}

.proc-why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
}

.proc-stat-card {
  background: #fff;
  padding: 32px 24px;
  transition: background 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.proc-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #0a0a0a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.proc-stat-card:hover {
  background: #fafaf8;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  z-index: 2;
}
.proc-stat-card:hover::before { transform: scaleX(1); }

.proc-stat-dark {
  background: #0a0a0a;
  color: #fff;
}
.proc-stat-dark::before { background: var(--accent-2); }
.proc-stat-dark:hover { background: #111; }
.proc-stat-dark span { color: rgba(255,255,255,0.5) !important; }
.proc-stat-dark p { color: rgba(255,255,255,0.55) !important; }

.proc-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 6px;
}
.proc-stat-dark strong { color: var(--accent-2); }

.proc-stat-card span {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
}
.proc-stat-dark span { border-color: rgba(255,255,255,0.1); }

.proc-stat-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.proc-cta-section {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  text-align: center;
}
.proc-cta-bg {
  position: absolute;
  inset: 0;
}
.proc-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.proc-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.78) 50%,
    rgba(10,10,10,0.92) 100%
  );
}
.proc-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.proc-cta-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 50px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.proc-cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}
.proc-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .proc-split { grid-template-columns: 1fr; min-height: auto; }
  .proc-split-alt .proc-split-img { order: 1; }
  .proc-split-alt .proc-split-text { order: 2; }
  .proc-split-img { min-height: 340px; }
  .proc-split-text { padding: 48px 40px; }
  .proc-why-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .proc-why-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .proc-hero { min-height: 500px; padding-bottom: 56px; }
  .proc-hero-content { padding: 40px 24px 0; }
  .proc-hero-btns { flex-direction: column; }
  .proc-trust-bar { gap: 14px; padding: 18px 20px; }
  .proc-trust-sep { display: none; }
  .proc-split-text { padding: 36px 24px; }
  .proc-split-img { min-height: 280px; }
  .proc-step-num { font-size: 64px; }
  .proc-why-stats { grid-template-columns: 1fr; }
  .proc-cta-section { padding: 80px 24px; }
  .proc-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .proc-hero-title { font-size: 38px; }
  .proc-split-text { padding: 28px 20px; }
}