/* ========================================
   BLOOM — Design Tokens
   ======================================== */
:root {
  --bg-dark: #0A1A0E;
  --green-deep: #1A3A22;
  --green-mid: #2D5A3A;
  --mint: #7CCB92;
  --petal: #F2A0AD;
  --petal-light: #F5B5BF;
  --center-gold: #F7D574;
  --green-stat: #16A34A;
  --red-alert: #DC2626;
  --bg-card: #F0F7F2;
  --text: #111111;
  --text-muted: #888888;
  --border: #E8E8E8;
  --bg-light: #FAFCFA;
}

/* ========================================
   RESET + BASE
   ======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: white;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========================================
   LAYOUT
   ======================================== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.serif { font-family: 'DM Serif Display', serif; }
.display-xl {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
}
.display-lg {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em;
}
.heading-lg {
  font-weight: 800; font-size: 28px;
  line-height: 1.15; letter-spacing: -0.02em;
}
.heading-md {
  font-weight: 800; font-size: 20px;
  line-height: 1.2; letter-spacing: -0.01em;
}
.body-lg { font-size: 17px; line-height: 1.6; }
.body-md { font-size: 15px; line-height: 1.6; }
.body-sm { font-size: 13px; line-height: 1.5; }
.caption {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.text-mint { color: var(--mint); }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }

/* ========================================
   FLOWER ICON (SVG inline helper)
   ======================================== */
.flower-icon {
  display: inline-block; width: 24px; height: 24px; vertical-align: middle;
}
.flower-icon-sm { width: 18px; height: 18px; }
.flower-icon-lg { width: 32px; height: 32px; }

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10, 26, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 20px; color: white;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 500;
}
.nav-links a:hover { color: rgba(255,255,255,0.8); }
.nav-cta {
  background: rgba(255,255,255,0.08); color: white; font-weight: 600;
  padding: 10px 22px; border-radius: 8px; font-size: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.nav-cta:hover { background: rgba(255,255,255,0.14); }

/* ========================================
   HERO (dark, botanical)
   ======================================== */
.hero {
  position: relative; min-height: 100vh;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/bloom-bg.jpg');
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,26,14,0.92) 0%, rgba(10,26,14,0.78) 50%, rgba(10,26,14,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 120px 0 80px;
}
.hero-tag { color: var(--mint); margin-bottom: 16px; }
.hero-headline { color: white; margin-bottom: 20px; }
.hero-headline em { font-style: italic; color: var(--mint); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.4);
  line-height: 1.6; margin-bottom: 36px; max-width: 420px;
}
.cta-row { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.btn-primary {
  background: var(--mint); color: var(--bg-dark); font-weight: 700;
  font-size: 15px; padding: 14px 28px; border-radius: 10px;
  display: inline-block; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,203,146,0.3);
}
.btn-ghost {
  font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 500;
}
.btn-ghost:hover { color: rgba(255,255,255,0.6); }
.proof { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.proof-stars { font-size: 14px; color: var(--center-gold); }
.proof-text { font-size: 13px; color: rgba(255,255,255,0.3); }
.proof-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* Hero dashboard */
.hero-visual { display: flex; justify-content: center; }
.hero-dashboard {
  background: white; border-radius: 20px; width: 100%; max-width: 440px;
  padding: 24px; color: var(--text);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.2);
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.dash-title { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.dash-badge {
  font-size: 11px; color: var(--text-muted); background: #F3F3F3;
  padding: 4px 10px; border-radius: 6px;
}
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.dash-metric {
  background: var(--bg-card); border-radius: 10px; padding: 12px 14px;
}
.dash-metric-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: #3D6B4A;
}
.dash-metric-value {
  font-size: 26px; font-weight: 800; color: var(--green-deep);
  margin-top: 3px; line-height: 1;
}
.dash-metric-value.green { color: var(--green-stat); }
.dash-people { display: flex; flex-direction: column; gap: 8px; }
.dash-person {
  display: flex; align-items: center; gap: 10px;
}
.dash-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-card); display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 600;
  color: var(--green-deep); flex-shrink: 0;
}
.dash-person-info { flex: 1; }
.dash-person-name { font-size: 13px; font-weight: 600; }
.dash-person-role { font-size: 10px; color: var(--text-muted); }
.dash-bar {
  width: 80px; height: 5px; background: #ECECEC;
  border-radius: 3px; overflow: hidden; flex-shrink: 0;
}
.dash-bar-fill { height: 100%; background: var(--green-stat); border-radius: 3px; }
.dash-day { font-size: 10px; font-weight: 600; width: 36px; text-align: right; }
.dash-day.green { color: var(--green-stat); }
.dash-day.muted { color: var(--text-muted); }

/* ========================================
   LOGOS BAR
   ======================================== */
.logos-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.logos-inner {
  display: flex; align-items: center; justify-content: center; gap: 48px;
}
.logos-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.logos-list { display: flex; gap: 40px; align-items: center; }
.logos-list span {
  font-size: 15px; font-weight: 700; color: var(--text);
  opacity: 0.18; letter-spacing: 0.01em;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
  margin: 48px 0;
}
.problem-card {
  background: #FFF7F8; border-radius: 16px; padding: 32px 28px;
  text-align: center;
}
.problem-number {
  font-size: 40px; font-weight: 800; color: var(--red-alert);
  opacity: 0.15; line-height: 1; margin-bottom: 8px;
}
.problem-label {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 4px;
}
.problem-desc { font-size: 13px; color: var(--text-muted); }

.fix-banner {
  background: var(--bg-card); border-radius: 16px;
  padding: 32px 40px; display: flex; align-items: center;
  gap: 24px;
}
.fix-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--green-deep); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.fix-text { flex: 1; }
.fix-headline { font-weight: 800; font-size: 18px; margin-bottom: 4px; }
.fix-sub { font-size: 14px; color: var(--text-muted); }

/* ========================================
   FEATURES SECTION
   ======================================== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 60px 0;
}
.feature-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.feature-row.reversed .feature-copy { order: 2; }
.feature-row.reversed .feature-visual { order: 1; }
.feature-tag { color: var(--mint); margin-bottom: 12px; }
.feature-headline { margin-bottom: 12px; }
.feature-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 20px; max-width: 420px;
}
.feature-link {
  font-size: 14px; font-weight: 600; color: var(--green-deep);
}
.feature-link:hover { color: var(--mint); }
.feature-visual {
  background: var(--bg-card); border-radius: 16px;
  padding: 32px; display: flex; align-items: center;
  justify-content: center; min-height: 280px;
}
.feature-mockup {
  background: white; border-radius: 12px;
  padding: 20px; width: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* ========================================
   TESTIMONIAL (dark section)
   ======================================== */
.testimonial-section {
  background: var(--bg-dark); color: white;
  padding: 100px 0; position: relative; overflow: hidden;
}
.testimonial-section .hero-bg {
  opacity: 0.3;
}
.testimonial-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.35;
  font-style: italic; margin-bottom: 32px;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--bg-dark); padding: 80px 0;
  text-align: center;
}
.cta-section .display-lg { color: white; margin-bottom: 16px; }
.cta-section .body-lg { color: rgba(255,255,255,0.4); margin-bottom: 32px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name {
  display: flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 18px; color: white;
}
.footer-brand-desc { font-size: 13px; line-height: 1.5; max-width: 220px; }
.footer-col-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.footer-badge {
  font-size: 11px; color: var(--mint); font-weight: 600;
  background: rgba(124,203,146,0.1); padding: 4px 12px;
  border-radius: 6px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero-content { grid-template-columns: 1fr; padding: 100px 0 60px; }
  .hero-visual { margin-top: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reversed .feature-copy { order: 1; }
  .feature-row.reversed .feature-visual { order: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .logos-inner { flex-direction: column; gap: 16px; }
  .nav-links { display: none; }
}
