.btn-gradient {
  background: var(--gradient-main);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: white;
}

.calc-card {
  background: #14162b;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.calc-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.checkbox {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.range {
  width: 100%;
}

.range-value {
  font-size: 13px;
  color: var(--text-muted);
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-weight: 600;
}

.calc-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.why-card {
  background: #14162b;
  border-radius: 16px;
  padding: 16px;
}

.cards-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.vp-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.vp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.vp-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.pillars-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
}

.pillar-card {
  perspective: 1000px;
}

.pillar-inner {
  position: relative;
  width: 100%;
  min-height: 180px;
  transition: transform .6s;
  transform-style: preserve-3d;
}

.pillar-card:hover .pillar-inner {
  transform: rotateY(180deg);
}

.pillar-front,
.pillar-back {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 1.5rem;
  backface-visibility: hidden;
}

.pillar-back {
  transform: rotateY(180deg);
}

.pill-more {
  display: inline-block;
  margin-top: .5rem;
  color: #7aa2ff;
}

.timeline.horizontal {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.step {
  min-width: 180px;
  background: rgba(255,255,255,0.04);
  padding: 1rem;
  border-radius: 12px;
}

.step-num {
  font-weight: bold;
  color: #ff66cc;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1.5rem;
}

.proof {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.proof-number {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff66cc;
}

.section {
  margin-top: 4rem;
}

.section h2 {
  margin-bottom: 1.5rem;
}

/* ===== SERVICES MODULE ===== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.service-icon {
  font-size: 26px;
  color: #ff66cc;
  margin-bottom: 6px;
}

.btn-outline {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border: 1px solid #7aa2ff;
  border-radius: 999px;
  color: #7aa2ff;
}
