<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&#038;display=swap" rel="stylesheet">
<style>
/* RESET */
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:#eef2ff;
  overflow-x:hidden;
}
/* SECTION */
.bn-full-section{
  position:relative;
  width:100%;
  padding:120px 6%;
  background:linear-gradient(135deg,#eef2ff,#f8fbff);
  overflow:hidden;
}
/* GLOW */
.bn-full-section::before,
.bn-full-section::after{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  filter:blur(100px);
  z-index:0;
}
.bn-full-section::before{
  top:-100px;
  left:-100px;
  background:radial-gradient(circle,#7b9cf3,transparent);
}
.bn-full-section::after{
  bottom:-100px;
  right:-100px;
  background:radial-gradient(circle,#f3a6e8,transparent);
}
/* GRID */
.bn-main-grid{
  position:relative;
  z-index:2;
  display:flex;
  gap:60px;
  align-items:center;
  justify-content:space-between;
}
/* LEFT */
.bn-content-left{
  flex:1.2;
}
.bn-content-left h1{
  font-size:clamp(2.6rem,4vw,3.6rem);
  line-height:1.25; /* FIX */
  font-weight:800;
  margin-bottom:30px;
  background:linear-gradient(90deg,#111,#4a4a4a);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
/* BUTTONS */
.bn-btn-row{
  display:flex;
  gap:20px;
  align-items:center;
  margin-bottom:50px;
}
.bn-primary-btn{
  background:linear-gradient(135deg,#6c8cff,#9dbaf9);
  color:#fff;
  padding:14px 32px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
  box-shadow:0 10px 25px rgba(108,140,255,0.3);
}
.bn-primary-btn:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 20px 40px rgba(108,140,255,0.5);
}
.bn-link{
  color:#111;
  font-weight:600;
  text-decoration:none;
}
/* TEXT */
.bn-description{
  color:#555;
  max-width:520px;
  line-height:1.7; /* FIX */
}
/* RIGHT */
.bn-bento-right{
  flex:1;
  display:grid;
  gap:25px;
}
/* HERO */
.bn-card-hero{
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(20px);
  border-radius:30px;
  padding:45px;
  color:#111;
  min-height:220px;
  display:flex;
  align-items:center;
  border:1px solid rgba(255,255,255,0.4);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}
.bn-card-hero h2{
  font-size:1.9rem;
  line-height:1.5; /* FIX */
  margin:0;
}
/* GRID */
.bn-sub-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}
/* CARDS */
.bn-card-item{
  border-radius:30px;
  padding:35px;
  transition:.35s;
  backdrop-filter:blur(15px);
}
/* COLORS */
.bn-blue-box{
  background:linear-gradient(135deg,#6c8cff,#8ea8ff);
  color:#fff;
  box-shadow:0 15px 40px rgba(108,140,255,0.4);
}
.bn-blue-box h3{
  margin-top:10px;
  line-height:1.4; /* FIX */
}
.bn-pink-box{
  background:linear-gradient(135deg,#f8d7f2,#f3c3ea);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:14px; /* FIX */
  padding:40px;
  box-shadow:0 15px 40px rgba(243,163,222,0.3);
}
/* UI */
.bn-pill{
  font-size:0.7rem;
  padding:6px 14px;
  border-radius:20px;
  display:inline-block;
  background:rgba(255,255,255,0.3);
  line-height:1;
}
.bn-pink-box .bn-pill{
  background:rgba(0,0,0,0.08);
}
.bn-big-num{
  font-size:3.5rem;
  font-weight:800;
  line-height:1; /* FIX */
  margin:0;
}
.bn-pink-box p{
  font-size:0.9rem;
  line-height:1.6; /* FIX */
  margin:0;
  max-width:180px;
  opacity:0.8;
}
/* RESPONSIVE */
@media(max-width:1000px){
  .bn-main-grid{
    flex-direction:column;
    gap:50px;
  }
}
@media(max-width:600px){
  .bn-sub-cards{
    grid-template-columns:1fr;
  }
}
</style>
</head>
<body>
<section>
    <!-- LEFT -->
      <h1>World-class consultants that empower biotech leaders</h1>
        <a href="#">Contact us ↗</a>
        <a href="#">Request a call</a>
      <p>
        Bionova collaborates with professional-led organisations to foster innovation globally.
      </p>
    <!-- RIGHT -->
        <h2>If you're ready to build your bioventure, let's get in touch.</h2>
          locations
          <h3>United bio-entrepreneurs</h3>
          scientists
          34
          <p>Visionary scientists & pioneers.</p>
</section>
</body>
</html>