.process-pro {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #fff;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.process-title {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-subtitle {
  color: #94a3b8;
  margin-bottom: 70px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.timeline-line {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  padding: 25px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  cursor: pointer;
}

.step:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.3);
}

.icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 15px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.step p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* Mobile Layout */
@media (max-width: 900px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }
}

.process-enterprise {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #020617, #020617, #020617);
  color: #fff;
}

.process-header {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 3rem;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-header p {
  color: #94a3b8;
  margin-top: 15px;
}

/* Blocks */
.block-title {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #e2e8f0;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
}

.step {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(56,189,248,0.25);
}

.num {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Showcase */
.product-showcase {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.show-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  transition: 0.3s ease;
}

.show-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(34,197,94,0.25);
}

/* CTA */
.process-cta {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 60px;
  border-radius: 30px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #020617;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 40px;
  background: #020617;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #0f172a;
}

/* Mobile */
@media (max-width: 900px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }
}









/* ================= GLOBAL THEME ================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

/* COLORS */
:root {
  --primary: #0F172A;
  --accent: #2563EB;
  --light: #F8FAFC;
  --gray: #94A3B8;
}

/* BACKGROUNDS */
.bg-primary {
  background-color: var(--primary);
}

.bg-accent {
  background-color: var(--accent);
}

/* TEXT */
.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

/* GLASS CARD */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* BUTTONS */
.theme-btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.theme-btn:hover {
  background-color: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
}

.theme-btn-outline {
  background: white;
  color: var(--primary);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: bold;
  transition: 0.3s;
}

.theme-btn-outline:hover {
  background-color: #E0E7FF;
}

/* TABS */
.tab-active {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* NAVBAR */
.theme-navbar {
  background: linear-gradient(to right, #0F172A, #2563EB);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* FOOTER */
.theme-footer {
  background: linear-gradient(to right, #0F172A, #2563EB);
  color: white;
}
