/* ==========================
   BEETFRUIT — LAYOUT
   Sections, grids, responsive
   ========================== */

/* ----- Header Layout ----- */
.topbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  z-index: 99999 !important;

  background: white !important;
  opacity: 1 !important;

  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

/* ----- Hero Layout ----- */

.hero {
  padding: 54px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}
.section,
.hero {
  position: relative;
  z-index: 1;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ----- Section Layout ----- */

.section {
  padding: 38px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.section .sub {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

/* ----- Feature Grid ----- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

/* ----- Product Layout ----- */

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 14px;
}

/* ----- Footer Layout ----- */

footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  color: var(--subtle);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
}

/* ----- Responsive ----- */

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}
