/* ══════════════════════════════════════════
   PROCESS PAGE
   ══════════════════════════════════════════ */

/* ── HERO ── */
.proc-hero {
  position: relative;
  background: linear-gradient(150deg, #060e22 0%, #0d1b3e 60%, #12243a 100%);
  padding: 10rem 5vw 0;
  overflow: hidden;
}
.proc-hero-lines { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; }
.proc-hero-content { max-width: 680px; padding-bottom: 5rem; position: relative; z-index: 1; }
.proc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.95; margin-bottom: 1.5rem;
}
.proc-hero h1 em { color: var(--red); font-style: normal; }
.proc-hero p {
  font-size: 1rem; font-weight: 300;
  color: rgba(248,249,252,0.68); max-width: 520px; line-height: 1.75;
}
.proc-hero-overview {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0; position: relative; z-index: 1;
}
.pho-item { display: flex; align-items: center; gap: 0.7rem; }
.pho-n {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--red); line-height: 1;
}
.pho-l {
  font-family: var(--font-condensed); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,249,252,0.55);
}
.pho-sep {
  font-family: var(--font-condensed); font-size: 1rem;
  color: rgba(255,255,255,0.15); flex-shrink: 0;
}


/* ── TIMELINE ── */
.proc-timeline { background: var(--navy); padding: 7rem 5vw; }
.proc-timeline-inner { max-width: 800px; }

.proc-step {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: flex-start;
}
.pst-left {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 0.3rem;
}
.pst-num {
  width: 56px; height: 56px;
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(214,48,24,0.15);
  transition: box-shadow 0.3s;
}
.proc-step:hover .pst-num { box-shadow: 0 0 0 8px rgba(214,48,24,0.2); }
.pst-num--active {
  box-shadow: 0 0 0 6px rgba(214,48,24,0.2), 0 0 20px rgba(214,48,24,0.3);
}
.pst-vline {
  width: 1px; flex: 1; min-height: 3rem;
  background: linear-gradient(180deg, rgba(214,48,24,0.4) 0%, rgba(255,255,255,0.05) 100%);
  margin-top: 4px;
}
.pst-body {
  padding: 0 0 4rem 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.pst-tag {
  font-family: var(--font-condensed); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(214,48,24,0.3);
  padding: 0.25rem 0.7rem; display: inline-block; width: fit-content;
}
.pst-title {
  font-family: var(--font-condensed); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
}
.pst-body > p {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(248,249,252,0.68); line-height: 1.85; max-width: 560px;
}
.pst-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.5rem;
}
.pstd {
  font-size: 0.84rem; font-weight: 300;
  color: rgba(248,249,252,0.6); line-height: 1.5;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(214,48,24,0.25);
  display: flex; align-items: flex-start; gap: 0.55rem;
}
.pstd svg.lucide { width: 0.95rem; height: 0.95rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--red); }
.proc-step--last .pst-body { padding-bottom: 0; }


/* ── GUARANTEES ── */
.proc-guarantees { background: #0a1229; padding: 7rem 5vw; }
.proc-guarantees .section-label { margin-bottom: 0.6rem; }
.proc-guarantees .section-title { margin-bottom: 3.5rem; }
.proc-guarantees .section-title em { color: var(--red); font-style: normal; }
.pg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.05);
}
.pg-card {
  background: #0a1229; padding: 3rem 2.5rem;
  border-top: 2px solid transparent;
  transition: border-top-color 0.25s, background 0.25s;
}
.pg-card:hover { border-top-color: var(--red); background: rgba(214,48,24,0.04); }
.pg-ico { margin-bottom: 1.2rem; display: block; color: var(--red); }
.pg-ico svg.lucide { width: 2.5rem; height: 2.5rem; }
.pg-title {
  font-family: var(--font-condensed); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.8rem;
}
.pg-card > p {
  font-size: 0.88rem; font-weight: 300;
  color: rgba(248,249,252,0.62); line-height: 1.75;
}


/* ── CTA ── */
.proc-cta {
  background: var(--navy-mid); padding: 7rem 5vw;
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.proc-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(214,48,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.proc-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 0.95;
  margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.proc-cta > p {
  font-size: 1rem; font-weight: 300; color: rgba(248,249,252,0.68);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75;
  position: relative; z-index: 1;
}
.proc-cta-btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}


/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .pg-grid { grid-template-columns: 1fr; }
  .proc-step { grid-template-columns: 60px 1fr; }
  .pst-body { padding-left: 1.5rem; }
  .pst-details { grid-template-columns: 1fr; }
  .proc-hero-overview { gap: 0.6rem; }
  .pho-sep { display: none; }
}
@media (max-width: 500px) {
  .proc-step { grid-template-columns: 50px 1fr; }
  .pst-num { width: 44px; height: 44px; font-size: 1.1rem; }
}
