/* ==========================================================================
   BeeStep — Homepage styles
   Fixed dark brand theme: black background, gold/white hex-bee crest system.
   ========================================================================== */

:root {
  --gold: #f5b400;
  --gold-dark: #d99a00;
  --bg: #0b0b0d;
  --surface: #17171b;
  --surface-2: #1f1f25;
  --ink: #f5f3ec;
  --ink-soft: #cfcdd4;
  --grey: #9c9aa3;
  --hairline: rgba(245, 243, 236, 0.1);
  --radius: 14px;
  --shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.6);
  --max-width: 1180px;
  color-scheme: dark;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title.center { text-align: center; }

/* ---------- Bee crest logomark (real brand artwork, cropped from source) ---------- */
.bee-mark {
  width: 1.1em;
  height: 1.1em;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-lockup .bee-mark { width: 30px; height: 33px; }
.brand-wordmark {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-wordmark .accent { color: var(--gold); }
.brand-wordmark sup { font-size: 0.55em; margin-left: 2px; }
.brand-lockup .bee-mark { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.brand-lockup:hover .bee-mark { transform: rotate(-10deg) scale(1.08); }

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 0.8, 0.24, 1), transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-hex { animation: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #17140a; }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 10px 24px -10px rgba(245,180,0,0.6); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--gold); color: #17140a; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #201c14 0%, var(--bg) 60%);
  color: var(--ink);
  padding: 100px 0;
  border-bottom: 1px solid var(--hairline);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-hex {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(245,180,0,0.3), rgba(245,180,0,0) 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: heroGlow 8s ease-in-out infinite;
}
.hex-1 { top: -60px; left: -60px; }
.hex-2 { bottom: -100px; right: -40px; width: 340px; height: 340px; animation-delay: -4s; }

@keyframes heroGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.12); }
}

.hero-figures {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  opacity: 0.22;
}
.hero-figures img { height: 250px; width: auto; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-brands {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}
.hero-brands .bee-mark { width: 16px; height: 18px; }
.hero-content .eyebrow { color: var(--gold); margin: 0; }
.hero-brands .sep { color: rgba(245,243,236,0.3); }
.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(245,243,236,0.8);
  margin: 0 0 10px;
  max-width: 520px;
}
.hero-tagline {
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 36px;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
  aspect-ratio: 700 / 790;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.hero-visual:hover img { transform: scale(1.045); }

/* ==========================================================================
   Collection
   ========================================================================== */
.collection { padding: 100px 0; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.collection-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 180, 0, 0.4);
  box-shadow: 0 28px 50px -18px rgba(0, 0, 0, 0.75);
}
.collection-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-10px);
}
.collection-card.featured:hover { transform: translateY(-16px); }
.card-header .bee-mark { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.collection-card:hover .card-header .bee-mark { transform: rotate(-8deg) scale(1.1); }
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.card-header .bee-mark { width: 34px; height: 37px; }
.card-badge {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  color: var(--ink);
}
.card-badge .accent { color: var(--gold); }
.collection-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey);
  margin: 0 0 18px;
}
.card-lead { color: var(--grey); margin: 0 0 14px; }
.card-perfect { font-weight: 700; margin: 0 0 8px; color: var(--ink); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.feature-list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

.collection-card .btn { align-self: flex-start; margin-top: 4px; }

/* ==========================================================================
   Why BeeStep
   ========================================================================== */
.why { background: var(--surface); padding: 90px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.check-grid {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.check-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  transition: transform 0.3s cubic-bezier(0.16, 0.8, 0.24, 1), border-color 0.3s ease;
}
.check-grid li:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 180, 0, 0.4);
}
.check-grid li img {
  height: 42px;
  width: auto;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.check-grid li:hover img { transform: scale(1.12) rotate(-4deg); }

/* ==========================================================================
   Industries
   ========================================================================== */
.industries { padding: 80px 0; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.industry-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}
.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.industry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,0.92) 0%, rgba(11,11,13,0.15) 55%, rgba(11,11,13,0.05) 100%);
}
.industry-tile:hover img { transform: scale(1.08); }
.industry-tile-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Promise
   ========================================================================== */
.promise {
  background: var(--surface);
  color: var(--ink);
  padding: 100px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.promise-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.promise .eyebrow { color: var(--gold); text-align: center; }
.promise .section-title { color: var(--ink); }
.promise-text { color: var(--grey); font-size: 1.1rem; }
.badge-strip-wrap { max-width: 720px; margin: 44px auto 0; }
.badge-strip { width: 100%; height: auto; display: block; margin: 0 auto; }

/* ==========================================================================
   Featured products
   ========================================================================== */
.products { padding: 100px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
  transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1), border-color 0.35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 180, 0, 0.4);
}
.product-card .card-header.center { justify-content: center; margin-bottom: 10px; }
.product-tag {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  margin: 0 0 20px;
}
.product-icons {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.product-icons img {
  height: 44px;
  width: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-icons img { transform: scale(1.1) translateY(-2px); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--surface); padding: 100px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 30px;
  margin: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline);
  transition: transform 0.35s cubic-bezier(0.16, 0.8, 0.24, 1), border-color 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 180, 0, 0.35);
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid var(--gold);
}
.stars { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  margin: 0 0 16px;
  color: var(--ink);
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--grey);
  font-size: 0.9rem;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter { padding: 80px 0; }
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--hairline);
}
.newsletter-text h2 { margin: 0 0 12px; font-size: 1.6rem; color: var(--ink); }
.newsletter-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--grey);
  font-size: 0.9rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--bg);
  color: var(--ink);
  min-width: 260px;
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: var(--grey); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg);
  padding: 64px 0 24px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand p { color: var(--grey); max-width: 320px; margin: 12px 0 20px; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: 0.9rem; }
.social-links a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 20px; }
.footer-bottom p { margin: 0; color: var(--grey); font-size: 0.85rem; text-align: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; order: -1; }
  .hero-content { text-align: center; }
  .hero-brands, .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card.featured { transform: none; }
  .check-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid var(--hairline);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-figures { display: none; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .badge-strip-wrap { overflow-x: auto; margin-left: -24px; margin-right: -24px; padding: 0 24px; }
  .badge-strip { width: auto; max-width: none; height: 70px; margin: 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card { padding: 22px 14px; }
  .product-card .card-badge { font-size: 1rem; }
  .newsletter-inner { padding: 32px 24px; }
}

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