/* BiBeeBiz — rebuilt static site stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --background: #f8fafc;
  --foreground: #0f172a;
  --card: #ffffff;
  --muted: #64748b;
  --muted-bg: #f1f5f9;
  --border: #e2e8f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --radius: 0.9rem;
  --shadow: 0 10px 25px -8px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 45px -12px rgba(15, 23, 42, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.font-art { font-family: 'Dancing Script', cursive; font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow); }
.btn-dark { background: var(--foreground); color: #fff; }
.btn-dark:hover { background: #1e293b; }
.btn-outline { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn-outline:hover { background: var(--muted-bg); }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--primary-light); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 1.15rem; color: var(--foreground); }
.logo-tag { font-family: 'Dancing Script', cursive; color: var(--primary); font-size: 1rem; margin-top: -2px; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--foreground);
}
.main-nav a:hover { background: var(--muted-bg); }
.main-nav a.active { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav a { padding: 0.75rem 0.25rem; border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-nav a:last-child { border-bottom: none; }
body.nav-open .mobile-nav { display: flex; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,10,20,0.88) 0%, rgba(6,10,20,0.55) 55%, rgba(6,10,20,0.35) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 5rem 0; }
.hero h1 { font-size: 3rem; max-width: 640px; }
.hero p.lead { font-size: 1.15rem; max-width: 560px; margin-top: 1.25rem; color: rgba(255,255,255,0.88); }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; font-weight: 700; color: #93c5fd; margin-bottom: 1rem;
}

.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 1rem auto 0; font-size: 1.05rem; }

/* Sections */
section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-header { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-header h2 { font-size: 2.1rem; margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
.bg-muted { background: var(--muted-bg); }
.bg-dark { background: var(--foreground); color: #fff; }
.bg-primary { background: var(--primary); color: #fff; }

/* Trust bar */
.trust-bar { padding: 2.5rem 0; text-align: center; }
.trust-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--muted); font-weight: 700; margin-bottom: 1.5rem; }
.trust-logos { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; font-weight: 700; color: #475569; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary); font-weight: 600; margin-top: 1.25rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; }
.feature-list .check {
  width: 22px; height: 22px; border-radius: 999px; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}

/* Process steps */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; text-align: center; }
.process-num {
  width: 52px; height: 52px; border-radius: 999px; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.15rem;
  margin: 0 auto 1rem;
}
.process-grid h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.process-grid p { font-size: 0.9rem; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 0.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item p { padding: 0 0.25rem 1.25rem; color: var(--muted); }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: 2.2rem; color: #fff; max-width: 620px; margin: 0 auto 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; color: rgba(255,255,255,0.85); }

/* Footer */
.site-footer { background: var(--muted-bg); border-top: 1px solid var(--border); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand h4 { color: var(--primary); font-size: 1.2rem; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-col h5 { font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 0.3rem 0; }
.footer-col a:hover { color: var(--primary); }
.social-row { display: flex; gap: 0.75rem; }
.social-row a {
  width: 36px; height: 36px; border-radius: 999px; background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  font-size: 0.88rem; color: var(--muted); flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom .legal-links { display: flex; gap: 1.5rem; }
.footer-bottom .legal-links a:hover { color: var(--primary); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--foreground);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light);
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }
.form-success { display: none; padding: 1rem 1.25rem; border-radius: 0.6rem; background: #ecfdf5; color: #047857; font-weight: 600; margin-top: 1.25rem; }
.form-success.visible { display: block; }

.contact-info-card { display: flex; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.contact-info-card:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: 0.25rem; }
.contact-info-card p { color: var(--muted); font-size: 0.9rem; }
.contact-info-card .value { color: var(--foreground); font-weight: 600; margin-top: 0.25rem; }

/* Blog */
.blog-card { display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 0.75rem; align-items: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-meta .tag { color: var(--primary); }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.blog-card p { color: var(--muted); font-size: 0.95rem; }

/* Legal pages */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 2.25rem 0 0.9rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem; padding-left: 1.25rem; list-style: disc; color: var(--muted); }
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.two-col img { border-radius: 1.25rem; box-shadow: var(--shadow-lg); }
.values-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.values-list li { display: flex; gap: 0.75rem; align-items: center; font-weight: 600; }
.values-list .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--primary); flex-shrink: 0; }

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.5rem; }
.impact-card { background: var(--muted-bg); border-radius: var(--radius); padding: 1.75rem; }
.impact-card h3 { color: var(--primary); font-size: 1.3rem; margin-bottom: 0.5rem; }
.impact-card p { color: var(--muted); font-size: 0.92rem; }

.steps-vertical { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.steps-vertical .step { display: flex; gap: 1.25rem; }
.steps-vertical .process-num { flex-shrink: 0; margin: 0; }
.steps-vertical h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.steps-vertical p { color: var(--muted); }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .two-col, .impact-grid, .form-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.25rem; }
  .page-hero h1 { font-size: 2rem; }
  .two-col { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
