/* Be a Bee — marketing site styles */
:root {
  --yellow: #f5b301;
  --yellow-soft: #fef9c3;
  --black: #141414;
  --grey: #6b6b63;
  --grey-light: #9ca3af;
  --bg: #fafaf7;
  --card: #ffffff;
  --border: #eae7dd;
  --max: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--black); text-decoration: none; }
a.link { color: var(--yellow); text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  position: sticky; top: 0; background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 50;
}
header.site .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--max); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; }
.brand .logo { width: 28px; height: 28px; border-radius: 8px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 16px; }
nav.top a { font-size: 13px; font-weight: 600; color: var(--grey); margin-left: 18px; }
nav.top a:hover { color: var(--black); }

/* Hero */
.hero { padding: 80px 0 60px; }
.hero h1 { font-size: 52px; line-height: 1.05; letter-spacing: -1.5px; font-weight: 900; margin: 0 0 20px; max-width: 720px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--yellow) 0%, #ffd84d 100%); padding: 0 6px; border-radius: 6px; }
.hero p.lead { font-size: 19px; color: var(--grey); max-width: 600px; margin: 0 0 32px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-block; padding: 13px 22px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform 0.06s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-secondary { background: var(--card); color: var(--black); border: 1.5px solid var(--border); }
.hero .badges { margin-top: 16px; display: flex; gap: 12px; font-size: 13px; color: var(--grey); }
.hero .badges span::before { content: "✓"; color: var(--yellow); font-weight: 800; margin-right: 6px; }

/* Section base */
section { padding: 64px 0; }
section h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 12px; }
section .lead { color: var(--grey); font-size: 16px; max-width: 600px; margin: 0 0 40px; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px;
}
.feature .icon { font-size: 28px; margin-bottom: 14px; }
.feature h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.feature p { font-size: 14px; color: var(--grey); margin: 0; line-height: 1.55; }

/* How */
.how { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 20px; }
.step .num { display: inline-flex; width: 32px; height: 32px; border-radius: 50%; background: var(--yellow-soft); color: var(--black); align-items: center; justify-content: center; font-weight: 800; font-size: 15px; margin-bottom: 12px; }
.step h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.step p { font-size: 14px; color: var(--grey); margin: 0; }

/* Pricing */
.pricing-card {
  background: var(--card); border: 2px solid var(--yellow); border-radius: 20px; padding: 36px; max-width: 460px; margin: 0 auto;
  box-shadow: 0 8px 32px rgba(245, 179, 1, 0.10);
}
.price-amount { font-size: 48px; font-weight: 900; letter-spacing: -1px; }
.price-amount span { font-size: 16px; font-weight: 600; color: var(--grey); }
.pricing-card ul { list-style: none; padding: 0; margin: 24px 0; }
.pricing-card ul li { padding: 6px 0; font-size: 14px; color: var(--black); }
.pricing-card ul li::before { content: "✓"; color: var(--yellow); font-weight: 800; margin-right: 8px; }
.pricing-card .btn-primary { width: 100%; text-align: center; }
.trial-note { text-align: center; color: var(--grey); font-size: 13px; margin-top: 24px; }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
details {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px;
}
details summary {
  cursor: pointer; font-weight: 700; font-size: 14px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--grey); }
details[open] summary::after { content: "−"; }
details p { font-size: 14px; color: var(--grey); margin: 12px 0 0; line-height: 1.55; }

/* Footer */
footer.site { background: var(--card); border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
footer.site .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer.site .col h4 { font-size: 12px; font-weight: 700; color: var(--grey-light); text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px; }
footer.site .col a { display: block; font-size: 14px; color: var(--grey); margin-bottom: 6px; }
footer.site .col a:hover { color: var(--black); }
footer.site .copy { font-size: 12px; color: var(--grey-light); margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }

/* Mobile */
@media (max-width: 720px) {
  .hero { padding: 48px 0 32px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero p.lead { font-size: 17px; }
  section { padding: 48px 0; }
  section h2 { font-size: 26px; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
  nav.top a { display: none; }
  nav.top a.lang { display: inline; }
}
