* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

/* HERO */
.hero {
  text-align: center;
  padding: 50px 20px;
}

.logo {
  width: 90px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 38px;
}

.hero p {
  opacity: 0.7;
  margin: 10px 0 25px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.primary {
  background: #ffd400;
  color: #000;
}

.outline {
  border: 2px solid #ffd400;
  color: #ffd400;
}

.trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0.8;
}

/* MAIN */
main {
  padding: 40px 16px 120px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

/* PRODUCT */
.product {
  background: #151515;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.product img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin-bottom: 15px;
}

.meta {
  opacity: 0.6;
  margin-bottom: 12px;
}

.product button {
  background: #ffd400;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  opacity: 0.4;
}

/* INQUIRY BAR */
.inquiry-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
}

.inquiry-bar button {
  background: #ffd400;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
}