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

:root {
  --brand-primary: #4f46e5;
  --brand-secondary: #6366f1;
  --dark: #0f172a;
  --muted: #64748b;
  --bg-soft: #f8fafc;
}

.deploy-section {
  padding: 50px;
  margin: 25px;
  border-radius: 23px;
  /* border: 1px solid red; */
  background: white;
  font-family: 'Inter', system-ui, sans-serif;
}

.deploy-container {
  max-width: 1200px;
  margin: auto;
}

.deploy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.deploy-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--dark), #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deploy-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.deploy-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.deploy-card {
  background: rgba(255,255,255,0.9);
  border-radius: 32px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
  transition: transform .5s ease, box-shadow .5s ease;
}

.deploy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 50px 90px -25px rgba(0,0,0,0.25);
}

.deploy-highlight {
  background: linear-gradient(180deg, #ffffff, #eef2ff);
}

.deploy-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.5rem;
}

.deploy-card h3 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: .75rem;
}

.deploy-card p {
  color: #475569;
  line-height: 1.7;
}

.deploy-connector {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
}

.deploy-connector span {
  width: 2px;
  height: 110px;
  background: linear-gradient(
    to bottom,
    #e5e7eb,
    #c7d2fe,
    #e5e7eb
  );
}

.deploy-connector svg {
  width: 42px;
  height: 42px;
  stroke: var(--brand-secondary);
  stroke-width: 2;
  fill: none;
}

.deploy-action {
  text-align: center;
  margin-top: 4rem;
}

.deploy-btn {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--brand-secondary),
    var(--brand-primary)
  );
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 25px 50px -15px rgba(79,70,229,0.6);
  transition: transform .3s ease, box-shadow .3s ease;
}

.deploy-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -20px rgba(79,70,229,0.8);
}

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

  .deploy-connector {
    display: none;


  }
}










/* CTA WRAPPER */
.deploy-action {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.deploy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #006eff;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.deploy-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* SECONDARY BUTTON (OUTLINE) */
.deploy-btn-outline {
    background: transparent;
    color: #006eff;
    border: 2px solid #006eff;
}

.deploy-btn-outline:hover {
    background: #006eff;
    color: #ffffff;
}


/* CTA WRAPPER */
.deploy-action {
    display: flex;
    justify-content: center; /* 👈 CENTER FIX */
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}
