/* ==========================================================================
   BaobabPlugins theme — main stylesheet
   Transcribed from approved designs: homepage, plugin page, about page.
   ========================================================================== */

:root {
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --gold: #D4A843;
  --gold-light: #E8C97A;
  --teal: #2EC4B6;
  --teal-dark: #1A9E92;
  --near-black: #1A1A2E;
  --text: #2C2C3A;
  --text-muted: #6B6B7B;
  --warm-bg: #FAF8F5;
  --warm-bg-alt: #F3F0EB;
  --card-bg: #FFFFFF;
  --border: #E8E4DE;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(27,67,50,0.06);
  --shadow-md: 0 4px 20px rgba(27,67,50,0.08);
  --shadow-lg: 0 12px 40px rgba(27,67,50,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Plugin accent — overridden per plugin via inline style */
  --plugin-accent: #2EC4B6;
  --plugin-accent-bg: rgba(46,196,182,0.08);
}

html { scroll-behavior: smooth; }

body.baobabplugins-site {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.baobabplugins-site * { box-sizing: border-box; }

.baobabplugins-site a { color: var(--green-deep); }

/* Reset headings inside our templates so Kadence doesn't intrude */
.baobabplugins-site h1,
.baobabplugins-site h2,
.baobabplugins-site h3,
.baobabplugins-site h4 {
  margin: 0;
  font-weight: 700;
}

.baobabplugins-site p { margin: 0; }

.baobabplugins-site ul { margin: 0; padding: 0; }

.bp-container { max-width: 1200px; margin: 0 auto; }

/* ══════════════════════ NAV ══════════════════════ */
.bp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.bp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-deep);
}

.bp-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.bp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bp-nav-links li { list-style: none; }

.bp-nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.bp-nav-links a:hover { color: var(--green-deep); }

.bp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.bp-nav-links a:hover::after { width: 100%; }

.bp-nav-links .bp-nav-cta,
.bp-nav-links a.bp-nav-cta {
  background: var(--green-deep);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.bp-nav-links .bp-nav-cta:hover,
.bp-nav-links a.bp-nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  color: white;
}

.bp-nav-links .bp-nav-cta::after,
.bp-nav-links a.bp-nav-cta::after { display: none; }

.bp-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* ══════════════════════ BUTTONS ══════════════════════ */
.bp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--green-deep);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.bp-btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); color: white; }

.bp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.bp-btn-secondary:hover { border-color: var(--green-deep); background: rgba(27,67,50,0.03); transform: translateY(-2px); }

.bp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.bp-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.3); color: var(--green-deep); }

.bp-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 32px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.bp-btn-full.primary { background: var(--green-deep); color: white; }
.bp-btn-full.primary:hover { background: var(--green-mid); transform: translateY(-2px); color: white; }
.bp-btn-full.outline { background: transparent; border: 1.5px solid var(--border); color: var(--green-deep); }
.bp-btn-full.outline:hover { border-color: var(--green-deep); transform: translateY(-2px); }

/* ══════════════════════ HERO (homepage) ══════════════════════ */
.bp-hero {
  padding: 160px 32px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bp-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,196,182,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bp-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(27,67,50,0.06);
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.bp-hero-badge .bp-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.bp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.08;
  color: var(--green-deep);
  max-width: 800px;
  margin: 0 auto 24px;
  letter-spacing: -0.03em;
  animation: fadeUp 0.8s 0.1s ease both;
}

.bp-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.bp-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}

.bp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* ══════════════════════ TRUST BAR ══════════════════════ */
.bp-trust-bar {
  padding: 40px 32px;
  text-align: center;
  animation: fadeUp 0.8s 0.4s ease both;
}

.bp-trust-bar p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}

.bp-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0.5;
  flex-wrap: wrap;
}

.bp-trust-logos span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

/* ══════════════════════ SECTION HEADERS ══════════════════════ */
.bp-plugins-section,
.bp-features-section,
.bp-pricing-section {
  padding: 80px 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.bp-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.bp-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 16px;
}

.bp-plugin-page .bp-section-label { color: var(--plugin-accent); }

.bp-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.bp-section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ══════════════════════ PLUGIN CARDS (homepage grid) ══════════════════════ */
.bp-plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.bp-plugin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bp-plugin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.bp-plugin-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFDF7 0%, var(--card-bg) 100%);
}

.bp-plugin-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.bp-plugin-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--plugin-accent-bg);
  color: var(--plugin-accent);
}

.bp-plugin-icon svg { stroke: currentColor; }

.bp-plugin-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 100px;
}

.bp-status-live { background: rgba(46,196,182,0.1); color: var(--teal-dark); }
.bp-status-soon { background: rgba(212,168,67,0.1); color: #B8922E; }

.bp-plugin-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bp-plugin-card .bp-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.bp-plugin-features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.bp-plugin-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.bp-plugin-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--plugin-accent);
}

.bp-plugin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.bp-plugin-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.bp-plugin-price strong {
  color: var(--green-deep);
  font-size: 1.1rem;
}

.bp-plugin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  transition: var(--transition);
}
.bp-plugin-link:hover { color: var(--teal); gap: 10px; }

/* ══════════════════════ WHY SECTION (homepage) ══════════════════════ */
.bp-why-section {
  padding: 100px 32px;
  background: var(--green-deep);
  color: white;
  position: relative;
  overflow: hidden;
}

.bp-why-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bp-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bp-why-inner .bp-section-label { color: var(--gold); }
.bp-why-inner .bp-section-title { color: white; }
.bp-why-inner .bp-section-sub { color: rgba(255,255,255,0.6); }

.bp-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.bp-why-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.bp-why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.bp-why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,168,67,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.bp-why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white;
}

.bp-why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ══════════════════════ CTA SECTION ══════════════════════ */
.bp-cta-section,
.bp-bottom-cta {
  padding: 100px 32px;
  text-align: center;
}

.bp-cta-card,
.bp-bottom-cta-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-deep) 0%, #244F3B 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.bp-cta-card::before,
.bp-bottom-cta-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bp-bottom-cta-card::before {
  background: radial-gradient(circle, rgba(46,196,182,0.1) 0%, transparent 60%);
}

.bp-cta-card h2,
.bp-bottom-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
}

.bp-cta-card p,
.bp-bottom-cta-card p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.6;
  position: relative;
}

/* ══════════════════════ PLUGIN PAGE ══════════════════════ */
.bp-plugin-hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bp-plugin-hero-content { animation: fadeUp 0.8s ease both; }

.bp-plugin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bp-plugin-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.bp-plugin-breadcrumb a:hover { color: var(--green-deep); }
.bp-plugin-breadcrumb svg { opacity: 0.4; }

.bp-plugin-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--plugin-accent-bg);
  border: 1px solid rgba(46,196,182,0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bp-plugin-hero-badge .bp-dot {
  width: 6px; height: 6px;
  background: var(--plugin-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.bp-plugin-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.bp-plugin-hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.bp-plugin-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.bp-plugin-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.bp-plugin-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bp-plugin-hero-visual {
  background: var(--warm-bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s 0.15s ease both;
}

.bp-plugin-hero-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--plugin-accent-bg) 0%, transparent 70%);
}

/* Screenshot placeholder (if no featured image) */
.bp-screenshot-placeholder {
  width: 100%;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.bp-screenshot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.bp-screenshot-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.bp-screenshot-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bp-screenshot-line {
  height: 10px;
  border-radius: 4px;
  background: var(--warm-bg-alt);
}
.bp-screenshot-line.short { width: 60%; }
.bp-screenshot-line.med { width: 80%; }
.bp-screenshot-line.accent { background: var(--plugin-accent-bg); width: 45%; }

.bp-plugin-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Features grid on plugin page */
.bp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bp-feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.bp-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.bp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--plugin-accent-bg);
  color: var(--plugin-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bp-feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.bp-feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How it works */
.bp-how-section {
  padding: 100px 32px;
  background: var(--warm-bg-alt);
}

.bp-how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bp-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.bp-how-step {
  text-align: center;
  position: relative;
}

.bp-how-step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--border);
}

.bp-how-step:last-child::after { display: none; }

.bp-step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-deep);
  transition: var(--transition);
}

.bp-how-step:hover .bp-step-number {
  border-color: var(--plugin-accent);
  background: var(--plugin-accent-bg);
}

.bp-how-step h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.bp-how-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* Pricing */
.bp-pricing-section { max-width: 1000px; }

.bp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.bp-pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}

.bp-pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.bp-pricing-card.recommended {
  border-color: var(--gold);
  background: linear-gradient(135deg, #FFFDF7 0%, var(--card-bg) 100%);
}

.bp-pricing-card.recommended::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.bp-pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  margin-bottom: 20px;
}

.bp-pricing-tier {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bp-pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.bp-pricing-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.bp-pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.bp-pricing-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.bp-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.bp-pricing-features li svg { flex-shrink: 0; margin-top: 3px; }

/* FAQ */
.bp-faq-section {
  padding: 100px 32px;
  background: var(--warm-bg-alt);
}

.bp-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.bp-faq-list {
  margin-top: 48px;
}

.bp-faq-item {
  border-bottom: 1px solid var(--border);
}

.bp-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.bp-faq-question:hover { color: var(--green-mid); }

.bp-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.bp-faq-item.open .bp-faq-icon {
  background: var(--plugin-accent-bg);
  border-color: var(--plugin-accent);
  transform: rotate(45deg);
}

.bp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.bp-faq-item.open .bp-faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.bp-faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-right: 48px;
}

/* Other plugins cross-sell */
.bp-other-plugins {
  padding: 0 32px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.bp-other-plugins-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.bp-other-plugins-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
}

.bp-other-plugins-header a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.bp-other-plugins-header a:hover { color: var(--teal); gap: 10px; }

.bp-other-plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.bp-other-plugin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.bp-other-plugin-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.bp-other-plugin-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.bp-other-plugin-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.bp-other-plugin-status {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #B8922E;
}

/* ══════════════════════ ABOUT PAGE ══════════════════════ */
.bp-about-hero {
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bp-about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}

.bp-about-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.bp-about-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.bp-story-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
}

.bp-story-block {
  margin-bottom: 64px;
}

.bp-story-block:last-child { margin-bottom: 0; }

.bp-story-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.bp-story-block p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.bp-story-block p strong { color: var(--green-deep); }

.bp-values-section {
  background: var(--green-deep);
  color: white;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}

.bp-values-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bp-values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.bp-values-inner .bp-section-label { color: var(--gold); }
.bp-values-inner .bp-section-title { color: white; }

.bp-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.bp-value-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.bp-value-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.bp-value-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: italic;
}

.bp-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
}

.bp-value-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ══════════════════════ FOUNDER (about) ══════════════════════ */
.bp-founder-section {
  padding: 100px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.bp-founder-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.bp-founder-photo {
  width: 200px;
  height: 240px;
  border-radius: var(--radius);
  background: var(--warm-bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bp-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-founder-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 2rem;
}

.bp-founder-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.bp-founder-title {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.bp-founder-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.bp-founder-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.bp-founder-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--warm-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}

.bp-founder-links a:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: translateY(-2px);
}

/* ══════════════════════ PROPORTION GLOBAL (about) ══════════════════════ */
.bp-pg-section {
  padding: 80px 32px 100px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bp-pg-card {
  background: var(--warm-bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.bp-pg-card .bp-section-label {
  color: var(--gold);
  margin-bottom: 16px;
}

.bp-pg-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.bp-pg-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.bp-pg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  transition: var(--transition);
}

.bp-pg-link:hover { color: var(--teal); gap: 12px; }

@media (max-width: 768px) {
  .bp-founder-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
    text-align: center;
  }
  .bp-founder-photo {
    width: 140px;
    height: 160px;
    margin: 0 auto;
  }
  .bp-founder-links { justify-content: center; }
  .bp-pg-card { padding: 32px; }
}

/* ══════════════════════ FOOTER ══════════════════════ */
.bp-footer {
  padding: 64px 32px 40px;
  border-top: 1px solid var(--border);
  background: var(--warm-bg);
}

.bp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.bp-footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.bp-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 20px;
}

.bp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-footer-col li {
  margin-bottom: 12px;
  list-style: none;
}

.bp-footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.bp-footer-col a:hover { color: var(--green-deep); }

.bp-footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.bp-footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.bp-footer-bottom a:hover { color: var(--green-deep); }

/* ══════════════════════ 404 / SEARCH ══════════════════════ */
.bp-simple-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 160px 32px 100px;
  text-align: center;
}

.bp-simple-page .bp-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
}

.bp-simple-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.bp-simple-page p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.bp-simple-page .bp-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bp-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 48px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bp-search-form:focus-within {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(27,67,50,0.08);
}

.bp-search-form input[type="search"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
}

.bp-search-form input[type="search"]::placeholder {
  color: var(--text-muted);
}

.bp-search-form button[type="submit"] {
  padding: 12px 24px;
  background: var(--green-deep);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.bp-search-form button[type="submit"]:hover { background: var(--green-mid); }

/* Search results list */
.bp-search-results {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 32px 80px;
}

.bp-search-results > h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bp-search-results .bp-search-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.bp-search-results .bp-search-result {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.bp-search-results .bp-search-result h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bp-search-results .bp-search-result h2 a {
  color: var(--green-deep);
  text-decoration: none;
  transition: var(--transition);
}

.bp-search-results .bp-search-result h2 a:hover { color: var(--teal); }

.bp-search-results .bp-search-result .bp-result-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.bp-search-results .bp-search-result p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* Pagination */
.bp-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bp-pagination a,
.bp-pagination span {
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.bp-pagination a:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}

.bp-pagination .current {
  background: var(--green-deep);
  color: white;
  border-color: var(--green-deep);
}

/* ══════════════════════ BLOG / GENERIC PAGES ══════════════════════ */
.bp-generic-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 32px 80px;
}

.bp-generic-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.bp-generic-page .entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

.bp-generic-page .entry-content p { margin-bottom: 20px; }

.bp-generic-page .entry-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--green-deep);
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}

.bp-generic-page .entry-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 32px 0 16px;
}

.bp-generic-page .entry-content a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.bp-generic-page .entry-content a:hover { color: var(--teal); }

.bp-generic-page .entry-content ul,
.bp-generic-page .entry-content ol {
  margin: 0 0 20px 24px;
  padding: 0;
}

.bp-generic-page .entry-content li { margin-bottom: 8px; }

.bp-generic-page .entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

.bp-generic-page .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 32px 0;
}

/* ══════════════════════ ANIMATIONS ══════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 968px) {
  .bp-plugin-hero { grid-template-columns: 1fr; gap: 40px; padding: 120px 20px 60px; }
  .bp-plugin-hero-visual { min-height: 300px; }
  .bp-features-grid { grid-template-columns: 1fr 1fr; }
  .bp-how-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .bp-how-step::after { display: none; }
  .bp-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .bp-nav-links { display: none; }
  .bp-mobile-toggle { display: block; }
  .bp-nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(250,248,245,0.98);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .bp-nav-links.is-open a::after { display: none; }

  .bp-hero { padding: 130px 20px 60px; }
  .bp-hero-actions { flex-direction: column; width: 100%; }
  .bp-hero-actions .bp-btn-primary,
  .bp-hero-actions .bp-btn-secondary { width: 100%; justify-content: center; }

  .bp-trust-logos { gap: 24px; }

  .bp-plugins-grid { grid-template-columns: 1fr; }
  .bp-why-grid { grid-template-columns: 1fr; }
  .bp-features-grid { grid-template-columns: 1fr; }
  .bp-how-steps { grid-template-columns: 1fr; }

  .bp-plugin-hero-actions { flex-direction: column; align-items: stretch; }
  .bp-plugin-hero-actions .bp-btn-primary,
  .bp-plugin-hero-actions .bp-btn-secondary { justify-content: center; }

  .bp-cta-card,
  .bp-bottom-cta-card { padding: 48px 28px; }

  .bp-other-plugins-grid { grid-template-columns: 1fr; }

  .bp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .bp-footer-brand { grid-column: 1 / -1; }
  .bp-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .bp-hero h1 { font-size: 2.2rem; }
  .bp-footer-inner { grid-template-columns: 1fr; }
  .bp-simple-page { padding: 130px 20px 60px; }
  .bp-simple-page .bp-actions { flex-direction: column; }
  .bp-simple-page .bp-actions a { width: 100%; justify-content: center; }
}
