*{box-sizing:border-box}

:root{
  --dark:#071126;
  --green:#10b981;
  --green-dark:#047857;
  --blue:#0ea5e9;
  --bg:#f3f7fb;
  --border:#dbe6f2;
  --muted:#475569;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--dark);
}

a{text-decoration:none;color:inherit}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px 42px;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(14px);
  border-bottom:1px solid #e2e8f0;
}

.site-logo img{
  height:74px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-weight:900;
}

.nav a:hover{color:var(--green-dark)}

.menu{display:none}

.btn,.smallbtn{
  display:inline-block;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--green),var(--blue));
  color:white!important;
  font-weight:900;
  padding:14px 22px;
  box-shadow:0 12px 28px rgba(14,165,233,.22);
}

.btn.dark{background:var(--dark)}
.btn.light{
  background:white!important;
  color:var(--dark)!important;
  border:1px solid var(--border);
}

.hero{
  position:relative;
  min-height:790px;
  padding:105px 48px 80px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.97) 0%,rgba(255,255,255,.91) 36%,rgba(255,255,255,.55) 60%,rgba(255,255,255,.12) 100%),
    url('/assets/businessmarket-hero-bg.png?v=hero-bg-final1');
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
  overflow:hidden;
}

.hero-content{
  max-width:780px;
  position:relative;
  z-index:2;
}

.hero-badge{
  display:inline-block;
  background:#dcfce7;
  color:var(--green-dark);
  padding:10px 18px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:24px;
}

.hero h1{
  font-size:74px;
  line-height:1.02;
  margin:0 0 24px;
  letter-spacing:-2px;
  color:var(--dark);
}

.hero p{
  font-size:21px;
  line-height:1.7;
  color:#334155;
  max-width:800px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:28px;
  max-width:760px;
}

.hero-points span{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  padding:14px;
  border-radius:18px;
  font-weight:900;
}

.hero-panel{
  position:absolute;
  right:54px;
  bottom:72px;
  width:480px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:34px;
  padding:26px;
  box-shadow:0 30px 90px rgba(15,23,42,.16);
  backdrop-filter:blur(12px);
}

.hero-panel h3{
  font-size:25px;
  margin:0 0 18px;
}

.metrics{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.metrics div{
  background:white;
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
}

.metrics span{
  color:#64748b;
  font-weight:900;
  font-size:13px;
}

.metrics strong{
  display:block;
  font-size:28px;
  margin:8px 0 4px;
}

.metrics small{
  color:var(--green-dark);
  font-weight:900;
}

.section{
  max-width:1320px;
  margin:auto;
  padding:82px 24px;
}

.center{text-align:center}

.section h2{
  font-size:44px;
  margin:0 0 14px;
}

.section-intro{
  max-width:880px;
  margin:0 auto 38px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.soft{
  background:linear-gradient(120deg,#f8fdff,#ecfdf5);
  max-width:none;
}

.soft .grid4,
.soft .section-intro,
.soft h2{
  max-width:1320px;
  margin-left:auto;
  margin-right:auto;
}

.grid4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.card,.panel{
  background:white;
  border:1px solid var(--border);
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 50px rgba(15,23,42,.07);
}

.card h3{
  font-size:24px;
  margin:12px 0;
}

.card p,.panel p{
  color:var(--muted);
  line-height:1.65;
}

.icon{font-size:38px}

.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}

.dark-panel{
  background:linear-gradient(135deg,#071126,#064e3b);
  color:white;
}

.dark-panel p{color:#dbeafe}

.list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:22px 0;
}

.list div{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:13px;
  font-weight:800;
}

.footer{
  background:#071126;
  color:white;
  padding:58px 24px 92px;
}

.footer-inner{
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:28px;
}

.footer a{
  display:block;
  color:#dbeafe;
  margin:10px 0;
}

.footer-logo{
  height:64px;
  background:white;
  border-radius:14px;
  padding:8px;
}

.powered-corner{
  position:fixed;
  right:24px;
  bottom:22px;
  z-index:9999;
  background:white;
  color:var(--dark);
  border:1px solid var(--border);
  border-radius:999px;
  padding:12px 22px;
  font-weight:900;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
}

.powered-corner strong{color:var(--green-dark)}

@media(max-width:1050px){
  .header{
    padding:18px 20px;
    flex-wrap:wrap;
  }

  .menu{
    display:block;
    border:0;
    background:var(--dark);
    color:white;
    border-radius:20px;
    padding:10px 14px;
    font-weight:900;
  }

  .nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    background:white;
    padding:18px;
    border-radius:22px;
  }

  .nav.open{display:flex}

  .site-logo img{height:54px}

  .hero{
    padding:60px 20px;
    min-height:auto;
    background:
      linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.92)),
      url('/assets/businessmarket-hero-bg.png?v=hero-bg-final1');
    background-size:cover;
    background-position:center;
  }

  .hero h1{font-size:44px}

  .hero-panel{
    position:relative;
    right:auto;
    bottom:auto;
    width:auto;
    margin-top:30px;
  }

  .hero-points,
  .metrics,
  .grid4,
  .split,
  .list,
  .footer-inner{
    grid-template-columns:1fr;
  }
}