/* Buttons */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  will-change: transform;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:active{
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary{
  background: var(--brand-accent);
  color: #fff;
}

.btn-primary:hover{
  background: #245ad6;
}

.btn-secondary{
  background: #fff;
  border-color: rgba(47,111,237,0.25);
  color: var(--brand);
}

.btn-secondary:hover{
  border-color: var(--brand-accent);
}
.btn-ghost{
  background: transparent;
  border: 1px dashed rgba(31,58,95,0.35);
  color: var(--brand);
}

.btn-ghost:hover{
  background: rgba(31,58,95,0.06);
  border-color: var(--brand-accent);
}



/* Cards */

.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.card-icon{
  background: var(--surface-3);
  border: 1px solid rgba(47,111,237,0.25);
  color: var(--brand);
}

.card-link{
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card-link:hover .card-icon{
  background: rgba(47,111,237,0.15);
}


.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
}

.card h3{
  margin-bottom: 0.45rem;
  color: var(--text);
}

.card p{
  margin: 0;
}

.card-arrow{
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: rgba(16, 19, 24, 0.78);
}

/* Pills */

.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.trust-pill{
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 19, 24, 0.05);
  border: 1px solid rgba(16, 19, 24, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(16, 19, 24, 0.72);
}

/* Lists */

.checklist{
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.checklist li{
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  color: rgba(16, 19, 24, 0.78);
  font-weight: 600;
}

.checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 6px;
  background: rgba(16, 19, 24, 0.10);
  border: 1px solid rgba(16, 19, 24, 0.10);
}

.bullets{
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
}

.bullets li{
  margin-bottom: 0.75rem;
  color: rgba(16, 19, 24, 0.78);
}

.bullets strong{
  color: var(--text);
}

/* Feature stack */

.feature-stack{
  display: grid;
  gap: 1rem;
}

.feature{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.feature h3{
  margin-bottom: 0.35rem;
  color: var(--text);
}

.feature p{
  margin: 0;
}

/* Steps */

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.step{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.step-num{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: var(--surface-2);
  border: 1px solid rgba(16, 19, 24, 0.06);
  margin-bottom: 0.85rem;
  color: rgba(16, 19, 24, 0.85);
}

.step h3{
  margin-bottom: 0.4rem;
  color: var(--text);
}

.step p{
  margin: 0;
}

/* Responsive */

@media (max-width: 1000px){
  .cards-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px){
  .cards-grid{
    grid-template-columns: 1fr;
  }
  .steps{
    grid-template-columns: 1fr;
  }
}

.primary-nav a{
  display: flex;
  align-items: center;
  line-height: 1;
}

.primary-nav li{
  display: flex;
  align-items: center;
}
