﻿/* ===========================
   PROCESS PAGE  -  DEDICATED STYLES
   Extends styles.css
=========================== */

/* ===========================
   PAGE HERO
=========================== */
.page-hero {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 72px 0 0;
}
.ph-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 40%, rgba(26,86,219,0.28) 0%, transparent 55%),
    radial-gradient(circle at 85% 60%, rgba(6,182,212,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 15%, rgba(167,139,250,0.15) 0%, transparent 40%);
}
.ph-inner {
  position: relative;
  text-align: center;
  padding-bottom: 64px;
  max-width: 820px;
  margin: 0 auto;
}

/* BREADCRUMB */
.breadcrumb { margin-bottom: 24px; }
.bc-list {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; list-style: none;
  font-size: 0.82rem;
}
.bc-list li { color: rgba(255,255,255,0.55); }
.bc-list li a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 5px;
}
.bc-list li a:hover { color: white; }
.bc-list li[aria-current] { color: rgba(255,255,255,0.9); font-weight: 500; }
.bc-list .fa-chevron-right { font-size: 0.65rem; }

.ph-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.ph-inner h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
}
.ph-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.ph-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.ph-wave {
  position: relative; margin-top: 20px;
}
.ph-wave svg { display: block; width: 100%; height: 80px; }

/* ===========================
   PHASE OVERVIEW STRIP
=========================== */
.phase-strip {
  background: var(--bg);
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 61px;
  z-index: 100;
}
.ps-grid {
  display: flex;
  align-items: stretch;
}
.ps-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  gap: 4px;
}
.ps-item:hover { background: var(--primary-light); color: var(--primary); border-bottom-color: var(--primary); }
.ps-item.active { background: var(--primary-light); color: var(--primary); border-bottom-color: var(--primary); }
.psi-num {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.5; line-height: 1;
}
.psi-icon { font-size: 1.3rem; margin: 2px 0; }
.psi-label { font-size: 0.82rem; font-weight: 600; text-align: center; }
.psi-duration { font-size: 0.7rem; opacity: 0.6; }
.ps-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  color: var(--text-light); opacity: 0.3; font-size: 0.8rem;
  flex-shrink: 0;
}

/* ===========================
   PHASE SECTIONS
=========================== */
.phase-section { padding: 96px 0; background: var(--white); }
.phase-alt { background: var(--bg); }

.phase-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
.phase-inner-rev { flex-direction: row-reverse; }

/* PHASE VISUAL */
.phase-visual { flex: 0 0 400px; position: relative; }
.pv-badge {
  position: absolute;
  top: -12px; left: -12px;
  background: var(--gradient);
  color: white;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.pv-badge-purple { background: linear-gradient(135deg, #7c3aed, #1a56db); }
.pv-badge-teal   { background: linear-gradient(135deg, #0891b2, #059669); }
.pv-badge-orange { background: linear-gradient(135deg, #ea580c, #ca8a04); }

.pv-illustration {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-xl);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pv-blue   { background: linear-gradient(135deg, #1e3a8a 0%, #0e7490 100%); }
.pv-purple { background: linear-gradient(135deg, #4c1d95 0%, #1e3a8a 100%); }
.pv-teal   { background: linear-gradient(135deg, #0c4a6e 0%, #134e4a 100%); }
.pv-orange { background: linear-gradient(135deg, #7c2d12 0%, #854d0e 100%); }

.pvi-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.pvi-ring.r1 { width: 260px; height: 260px; animation: spin 22s linear infinite; }
.pvi-ring.r2 { width: 180px; height: 180px; animation: spin 15s linear infinite reverse; border-style: dashed; }

.pvi-center {
  width: 76px; height: 76px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(0,0,0,0.3);
  z-index: 2;
}
.pvi-purple { box-shadow: 0 0 40px rgba(124,58,237,0.4); }
.pvi-teal   { box-shadow: 0 0 40px rgba(6,182,212,0.4); }
.pvi-orange { box-shadow: 0 0 40px rgba(249,115,22,0.4); }

.pvi-dot {
  position: absolute;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.pvi-dot:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.dot-tl { top: 20%;  left: 10%; }
.dot-tr { top: 20%;  right: 10%; }
.dot-bl { bottom: 20%; left: 10%; }
.dot-br { bottom: 20%; right: 10%; }

.pv-duration-card {
  position: absolute;
  bottom: -18px; right: -18px;
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
}
.pv-duration-card i { font-size: 1.2rem; color: var(--primary); }
.pv-dc-purple i { color: #7c3aed; }
.pv-dc-teal   i { color: #0891b2; }
.pv-dc-orange i { color: #ea580c; }
.pv-duration-card strong { display: block; font-size: 0.78rem; color: var(--text-light); }
.pv-duration-card span  { font-weight: 700; color: var(--secondary); }

/* PHASE CONTENT */
.phase-content { flex: 1; }
.phase-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 12px;
}
.pt-purple { background: rgba(124,58,237,0.1); color: #7c3aed; }
.pt-teal   { background: rgba(8,145,178,0.1);  color: #0891b2; }
.pt-orange { background: rgba(234,88,12,0.1);  color: #ea580c; }

.phase-content h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800; color: var(--secondary);
  line-height: 1.18; margin-bottom: 14px;
}
.phase-intro {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.75; margin-bottom: 28px;
}

/* PHASE BLOCKS */
.phase-blocks { display: flex; flex-direction: column; gap: 22px; }
.pb-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.phase-alt .pb-block { background: var(--white); }

.pb-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pb-purple { color: #7c3aed; }
.pb-teal   { color: #0891b2; }
.pb-orange { color: #ea580c; }

.pb-list { display: flex; flex-direction: column; gap: 8px; }
.pb-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.pb-list li .fa-check-circle { color: var(--success); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }

/* RESPONSIBILITY CARDS */
.resp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.resp-card {
  border-radius: 8px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.resp-client  { background: rgba(26,86,219,0.04); border-color: rgba(26,86,219,0.15); }
.resp-dastute { background: rgba(16,185,129,0.04); border-color: rgba(16,185,129,0.15); }
.rc-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.resp-client  .rc-label i { color: var(--primary); }
.resp-dastute .rc-label i { color: var(--success); }
.resp-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ===========================
   QUALITY SECTION
=========================== */
.quality-section { background: var(--secondary); padding: 96px 0; }
.quality-section .section-tag  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.quality-section .section-header h2 { color: white; }
.quality-section .section-header p  { color: rgba(255,255,255,0.65); }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.quality-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--transition);
}
.quality-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.qc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.qc-blue   { background: rgba(26,86,219,0.25);  color: #93c5fd; }
.qc-green  { background: rgba(16,185,129,0.25); color: #6ee7b7; }
.qc-red    { background: rgba(239,68,68,0.25);  color: #fca5a5; }
.qc-purple { background: rgba(167,139,250,0.25);color: #c4b5fd; }

.quality-card h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 10px; }
.quality-card > p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 18px; }
.qc-footer { display: flex; flex-direction: column; gap: 6px; }
.qc-footer span {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.qc-footer i { color: var(--success); font-size: 0.72rem; }

/* ===========================
   COMMUNICATION SECTION
=========================== */
.comms-section { background: var(--bg); padding: 96px 0; }

.comms-timeline {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-item {
  display: flex;
  gap: 28px;
  position: relative;
}

.ct-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}
.ct-icon {
  width: 52px; height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(26,86,219,0.3);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.ct-teal   { background: linear-gradient(135deg, #0891b2, #059669); box-shadow: 0 6px 18px rgba(8,145,178,0.3); }
.ct-purple { background: linear-gradient(135deg, #7c3aed, #1a56db); box-shadow: 0 6px 18px rgba(124,58,237,0.3); }
.ct-orange { background: linear-gradient(135deg, #ea580c, #ca8a04); box-shadow: 0 6px 18px rgba(234,88,12,0.3); }

.ct-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 6px 0;
  min-height: 32px;
}
.ct-item:last-child .ct-line { display: none; }

.ct-content {
  padding-bottom: 40px;
  flex: 1;
}
.ct-item:last-child .ct-content { padding-bottom: 0; }

.ct-freq {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 100px;
  margin-bottom: 8px;
}
.weekly   { background: rgba(26,86,219,0.1); color: var(--primary); }
.daily    { background: rgba(8,145,178,0.1);  color: #0891b2; }
.biweekly { background: rgba(124,58,237,0.1); color: #7c3aed; }
.monthly  { background: rgba(234,88,12,0.1);  color: #ea580c; }

.ct-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.ct-content p  { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.ct-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ct-tags span {
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 11px;
  font-size: 0.78rem; font-weight: 500; color: var(--text);
}
.ct-tags i { color: var(--primary); font-size: 0.72rem; }

/* ===========================
   PROCESS CTA SECTION
=========================== */
.process-cta {
  background: var(--gradient-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pcta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.pcta-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.ps1 { width: 500px; height: 500px; top: -150px; left: -100px; }
.ps2 { width: 350px; height: 350px; bottom: -100px; right: 5%; }
.ps3 { width: 200px; height: 200px; top: 10%; right: 20%; }

.pcta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.pcta-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white;
  margin: 0 auto 24px;
  backdrop-filter: blur(8px);
}
.pcta-inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900; color: white;
  margin-bottom: 16px; line-height: 1.15;
}
.pcta-inner p {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  line-height: 1.75; margin-bottom: 36px;
}
.pcta-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}
.btn-glass-white {
  background: rgba(255,255,255,0.1);
  color: white; border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}
.btn-glass-white:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.pcta-offices {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.pcta-sep { opacity: 0.3; }
.pcta-offices i { color: var(--accent); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-visual { flex: 0 0 340px; }
}

@media (max-width: 900px) {
  .phase-inner { flex-direction: column !important; gap: 48px; }
  .phase-visual { width: 100%; flex: none; max-width: 400px; align-self: center; }
  .pv-illustration { height: 260px; }
}

@media (max-width: 768px) {
  .phase-strip { position: static; }
  .ps-grid { flex-wrap: wrap; }
  .ps-item { flex: 0 0 calc(50% - 1px); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .ps-arrow { display: none; }
  .quality-grid { grid-template-columns: 1fr; }
  .resp-row { grid-template-columns: 1fr; }
  .ph-inner h1 { font-size: 2rem; }
  .phase-section { padding: 64px 0; }
  .quality-section { padding: 64px 0; }
  .comms-section { padding: 64px 0; }
  .process-cta { padding: 64px 0; }
}

@media (max-width: 540px) {
  .ps-item { flex: 0 0 100%; }
  .ct-item { flex-direction: column; gap: 12px; }
  .ct-marker { flex-direction: row; width: 100%; gap: 12px; align-items: center; }
  .ct-line { width: auto; height: 2px; flex: 1; margin: 0; min-height: auto; }
  .dot-tl, .dot-tr, .dot-bl, .dot-br { display: none; }
  .pv-ring { display: none; }
}

