* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f4ec;
  color: #171717;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.topbar {
  background: #070707;
  color: white;
  padding: 16px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.qLogo {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #f5c542;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
}

.brand h1 {
  font-size: 24px;
}

.brand span {
  color: #f5c542;
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: white;
  font-weight: 700;
}

.navBtn {
  background: #f5c542;
  color: #111;
  padding: 11px 18px;
  border-radius: 999px;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  color: white;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55), rgba(0,0,0,.2)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.heroContent {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  background: rgba(245,197,66,.18);
  color: #f5c542;
  border: 1px solid rgba(245,197,66,.5);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 20px;
}

.eyebrow.dark {
  color: #111;
  background: #f5c542;
}

.hero h2 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 720px;
  color: #f3f3f3;
}

.heroButtons,
.ctaButtons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
}

.primary {
  background: #f5c542;
  color: #111;
}

.secondary {
  background: white;
  color: #111;
}

.secondary.light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.intro {
  text-align: center;
  padding: 70px 8% 25px;
}

.intro h2,
.how h2,
.builtFor h2,
.featureSplit h2,
.cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 15px;
}

.intro p {
  max-width: 800px;
  margin: auto;
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}

.benefits {
  padding: 45px 8% 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefitCard {
  background: white;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.05);
  transition: .25s ease;
}

.benefitCard:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}

.benefitCard span {
  font-size: 34px;
  display: block;
  margin-bottom: 16px;
}

.benefitCard h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.benefitCard p {
  color: #5b5b5b;
  line-height: 1.6;
  font-size: 16px;
}

.featureSplit {
  background: #111;
  color: white;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  padding: 90px 8%;
  align-items: center;
}

.featureSplit p {
  color: #ddd;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featureSplit ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.featureSplit li {
  background: rgba(255,255,255,.08);
  padding: 14px 16px;
  border-radius: 14px;
  border-left: 4px solid #f5c542;
}

.featureBox {
  background: #f5c542;
  color: #111;
  padding: 36px;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}

.featureBox h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.featureBox p {
  color: #222;
}

.statGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.statGrid div {
  background: white;
  border-radius: 20px;
  padding: 22px;
}

.statGrid strong {
  display: block;
  font-size: 30px;
}

.statGrid span {
  font-weight: 700;
  color: #555;
}

.how {
  padding: 85px 8%;
  text-align: center;
}

.steps {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.steps div {
  background: white;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}

.steps b {
  width: 44px;
  height: 44px;
  background: #111;
  color: #f5c542;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 20px;
}

.steps h3 {
  margin-bottom: 10px;
}

.steps p {
  color: #606060;
  line-height: 1.5;
}

.builtFor {
  padding: 70px 8%;
  background: white;
  text-align: center;
}

.tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tags span {
  background: #111;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
}

.cta {
  background:
    linear-gradient(135deg, rgba(0,0,0,.9), rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 95px 8%;
}

.cta p {
  font-size: 21px;
  color: #e9e9e9;
}

.ctaButtons {
  justify-content: center;
}

footer {
  background: #070707;
  color: white;
  text-align: center;
  padding: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: .7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .topbar {
    padding: 14px 18px;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero {
    min-height: 650px;
    padding: 70px 6%;
  }

  .hero p {
    font-size: 18px;
  }

  .benefits,
  .featureSplit,
  .steps {
    grid-template-columns: 1fr;
  }

  .featureSplit {
    padding: 70px 6%;
  }

  .statGrid {
    grid-template-columns: 1fr;
  }
}.platformHighlights{
  padding:70px 8%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  background:#fff;
}

.highlightCard{
  background:#fff;
  padding:32px;
  border-radius:24px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  border-top:5px solid #f5c542;
}

.highlightCard span{
  font-size:42px;
  display:block;
  margin-bottom:14px;
}

.highlightCard h3{
  font-size:24px;
  margin-bottom:12px;
}

.highlightCard p{
  line-height:1.7;
  color:#555;
}

@media(max-width:900px){
  .platformHighlights{
    grid-template-columns:1fr;
    padding:50px 6%;
  }
}