:root{
  --berge:#EFECCA;
  --dark:#1f2328;
}

.bg-berge{ background:var(--berge); }

.nav-berge{
  background:rgba(239,236,202,.95);
  backdrop-filter: blur(6px);
}

.hero{
  background:linear-gradient(135deg,#fff,#f6f3d7);
  border-radius:24px;
  padding:3.5rem 3rem;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

.card-pro{
  background:#fff;
  border-radius:20px;
  padding:2rem;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  height:100%;
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-pro:hover{
  transform: translateY(-4px);
  box-shadow:0 14px 34px rgba(0,0,0,.10);
}

.badge-soft{
  background: rgba(0,0,0,.06);
  color: var(--dark);
  border-radius: 999px;
  padding: .45rem .75rem;
  display:inline-block;
}

.section-title{
  font-weight:800;
}

.footer-berge{
  background:rgba(255,255,255,.7);
}

.btn{ transition: transform .15s ease; }
.btn:active{ transform: scale(.98); }

img.rounded-4{ border-radius:18px !important; }
