/* ══════════════════════════════════════
   OUR PROCESS - assets/css/our-process.css
   ══════════════════════════════════════ */

/* ── CSS VARS (required for standalone use) ── */
:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #ec4899;
  --gradient: linear-gradient(135deg, #6366f1, #ec4899);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(236,72,153,0.08));
  --text-dark: #2c3e50;
  --text-mid: #64748b;
  --text-light: #94a3b8;
  --bg-section: #f1f5f9;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ── PROCESS SECTION WRAPPER ── */
.process-section {
  padding: 90px 0;
  background: var(--bg-section);
}

/* ── SECTION TAG ── */
.process-tag {
  display: inline-block;
  background: var(--gradient-soft);
  color: var(--primary);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  border: 1px solid rgba(99,102,241,0.2);
  margin-bottom: 16px;
}

/* ── SECTION TITLE ── */
.process-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; color: var(--text-dark);
  letter-spacing: -1px; line-height: 1.15;
  margin-bottom: 16px;
}
.process-title .gt {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── SECTION SUBTITLE ── */
.process-subtitle {
  font-size: 16px; color: var(--text-mid);
  max-width: 620px; line-height: 1.8;
  margin-bottom: 52px;
}

/* ── PROCESS GRID ── */
.gkp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── PROCESS CARD ── */
.gkp-pc {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gkp-pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.25);
}

/* Top gradient bar on hover */
.gkp-pc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.gkp-pc:hover::before {
  transform: scaleX(1);
}

/* Big background number */
.gkp-pcnum {
  font-size: 70px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.12;
  position: absolute;
  top: -10px; right: 18px;
  line-height: 1;
  pointer-events: none;
}

/* Icon box */
.gkp-pcicon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.gkp-pc:hover .gkp-pcicon {
  background: var(--gradient);
  color: #fff;
}

/* Card heading */
.gkp-pc h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

/* Card description */
.gkp-pc > p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Bullet list */
.gkp-pclist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gkp-pclist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.gkp-pclist li::before {
  content: '→';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .process-section { padding: 70px 0; }
  .gkp-process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .process-section { padding: 60px 0; }
  .gkp-process-grid { grid-template-columns: 1fr; }
}