:root {
  --bg: #f7fbf8;
  --white: #ffffff;
  --text: #14211a;
  --muted: #5e6d63;
  --line: #dfe9e3;
  --green: #0f8d49;
  --green-dark: #0a6a37;
  --green-soft: #eef8f2;
  --gold-soft: #fff8e8;
  --gold-line: #f2d37a;
  --shadow: 0 16px 40px rgba(15, 60, 33, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

#bl-site {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.bl-container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* TOP BAR */
.bl-topbar {
  background: linear-gradient(90deg, #eaf6ee, #2b5b63);
  padding: 12px 0;
}

.bl-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.bl-topbar-link {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* HEADER */
.bl-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223, 233, 227, 0.9);
}

.bl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.bl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}

.bl-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), #26b663);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(15, 141, 73, 0.22);
}

.bl-brand-text small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.bl-brand-text strong {
  display: block;
  font-size: 18px;
}

.bl-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: wrap;
}

.bl-nav-links a:hover {
  color: var(--text);
}

.bl-nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.bl-btn,
.bl-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 0;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.bl-btn:hover,
.bl-lang-btn:hover {
  transform: translateY(-2px);
}

.bl-btn-primary {
  background: linear-gradient(135deg, var(--green), #17aa58);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(15, 141, 73, 0.25);
}

.bl-btn-secondary,
.bl-lang-btn {
  background: #fff;
  color: #000 !important;
  border: 2px solid var(--green);
}

.bl-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.bl-mobile-menu {
  display: none;
  padding: 0 0 18px;
}

/* HERO */
.bl-hero {
  padding: 76px 0 42px;
  background:
    radial-gradient(circle at top right, rgba(15, 141, 73, 0.12), transparent 26%),
    radial-gradient(circle at top left, rgba(30, 175, 95, 0.09), transparent 22%),
    linear-gradient(180deg, #f8fcf9 0%, #ffffff 70%);
}

.bl-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.bl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.bl-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.4px;
}

.bl-subtext {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  max-width: 720px;
}

.bl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.bl-micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bl-micro-proof span::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
  font-weight: 900;
}

.bl-hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.bl-hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bl-hero-card-top strong {
  font-size: 18px;
}

.bl-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bl-progress-panel,
.bl-score-panel,
.bl-next-step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fcfefd;
}

.bl-stack {
  display: grid;
  gap: 14px;
}

.bl-progress-panel small,
.bl-score-panel small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}

.bl-bar {
  height: 12px;
  border-radius: 999px;
  background: #e8f0eb;
  overflow: hidden;
  margin: 10px 0 8px;
}

.bl-bar > span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #2cc56a);
  border-radius: inherit;
}

.bl-score-big {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
}

.bl-score-big strong {
  font-size: 42px;
  line-height: 1;
}

.bl-score-big span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bl-next-step ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

/* TRUST STRIP */
.bl-trust-strip {
  padding: 20px 0 6px;
}

.bl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bl-trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(14, 57, 31, 0.04);
}

.bl-trust-card strong {
  display: block;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 6px;
}

.bl-trust-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

/* GENERIC SECTIONS */
.bl-section {
  padding: 78px 0;
}

.bl-section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.bl-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.bl-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* GRID HELPERS */
.bl-problem-grid,
.bl-solution-grid,
.bl-path-grid,
.bl-testimonial-grid,
.bl-faq-grid,
.bl-footer-grid,
.bl-benefits-grid {
  display: grid;
  gap: 22px;
}

/* PROBLEM */
.bl-problem-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.bl-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.bl-problem-list {
  display: grid;
  gap: 14px;
}

.bl-problem-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fafcfa;
  border: 1px solid #e8efea;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bl-problem-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff1f1;
  color: #c44444;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 34px;
}

.bl-problem-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.bl-problem-item span,
.bl-panel p,
.bl-panel li {
  color: var(--muted);
}

.bl-quote-box {
  background: linear-gradient(180deg, #fbfdfb 0%, #f4faf6 100%);
}

.bl-quote-box blockquote {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  font-weight: 800;
}

/* SYSTEM / BENEFITS */
.bl-solution-grid,
.bl-benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.bl-solution-card,
.bl-benefit-card {
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.bl-solution-card .bl-step {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--green), #23ba61);
}

.bl-solution-card h3,
.bl-benefit-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.bl-solution-card p,
.bl-benefit-card p {
  color: var(--muted);
  margin: 0;
}

.bl-solution-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

/* PROGRAMS */
.bl-path-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.bl-path-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bl-path-card.bl-featured {
  border: 2px solid var(--green);
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(15, 141, 73, 0.17);
}

.bl-path-card .bl-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2f5f3;
  color: #24332a;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.bl-path-card.bl-featured .bl-tag {
  background: var(--green);
  color: #fff;
}

.bl-path-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.bl-path-card p,
.bl-path-card li {
  color: var(--muted);
}

.bl-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 0 8px;
  flex-wrap: wrap;
}

.bl-old-price {
  text-decoration: line-through;
  color: #7f8d84;
  font-size: 20px;
  font-weight: 800;
}

.bl-new-price {
  font-size: 42px;
  line-height: 1;
  color: var(--green);
  font-weight: 900;
}

.bl-save {
  font-size: 14px;
  font-weight: 800;
  color: var(--green-dark);
  margin: 14px 0 16px;
}

.bl-path-card ul {
  padding-left: 18px;
  margin: 16px 0 22px;
}

.bl-path-card > div:not(.bl-price-row):not(.bl-save) {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

/* CREDIBILITY */
.bl-credibility {
  background: linear-gradient(180deg, #f8fcf9 0%, #ffffff 100%);
}

.bl-credibility-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.bl-credibility .bl-section-head {
  text-align: left;
  max-width: none;
  margin: 0 0 14px;
}

.bl-cred-points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.bl-cred-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.bl-cred-point i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-style: normal;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  flex: 0 0 36px;
}

.bl-cred-point strong {
  display: block;
  margin-bottom: 4px;
}

.bl-cred-point div div {
  color: var(--muted);
}

.bl-cred-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.bl-cred-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.bl-cred-card p {
  color: var(--muted);
}

.bl-mini-stat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.bl-mini-stat div {
  background: #f8fbf9;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.bl-mini-stat strong {
  display: block;
  color: var(--green);
  font-size: 24px;
  margin-bottom: 6px;
}

.bl-mini-stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* TESTIMONIALS */
.bl-testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.bl-testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.bl-stars {
  color: #ffb400;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 12px;
}

.bl-testimonial p {
  color: var(--muted);
  margin: 0 0 18px;
}

.bl-testimonial strong {
  display: block;
  margin-bottom: 4px;
}

.bl-testimonial span {
  color: var(--muted);
}

/* CONTACT */
.bl-contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 24px;
}

.bl-contact-info,
.bl-contact-form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.bl-contact-info h3 {
  margin-top: 0;
  font-size: 32px;
  line-height: 1.2;
}

.bl-contact-info p {
  color: var(--muted);
}

.bl-contact-detail {
  margin-top: 18px;
}

.bl-contact-detail strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
}

.bl-contact-form .bl-form-row {
  margin-bottom: 16px;
}

.bl-contact-form input,
.bl-contact-form select,
.bl-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dbe6df;
  border-radius: 10px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
}

.bl-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.bl-full-btn {
  width: 100%;
  border: 0;
}

/* FAQ */
.bl-faq-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}

.bl-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(14, 57, 31, 0.05);
}

.bl-faq-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.bl-faq-item p {
  margin: 0;
  color: var(--muted);
}

/* CTA BAND */
.bl-cta-band {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f8d49 0%, #0b6c38 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 50px rgba(15, 141, 73, 0.22);
}

.bl-cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.8px;
}

.bl-cta-band p {
  margin: 0 auto 22px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.bl-cta-band .bl-btn-secondary {
  background: #fff;
  color: var(--green) !important;
  border-color: #fff;
}

/* FOOTER */
.bl-site-footer {
  padding: 52px 0 28px;
  background: #122017;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.bl-footer-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.bl-footer-note,
.bl-footer-links a,
.bl-footer-links p {
  color: rgba(255, 255, 255, 0.78);
}

.bl-footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.bl-footer-contact {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.bl-footer-contact a {
  color: #fff;
  font-weight: 700;
}

.bl-copyright {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bl-hero-grid,
  .bl-credibility-wrap,
  .bl-problem-grid,
  .bl-footer-grid,
  .bl-trust-grid,
  .bl-solution-grid,
  .bl-path-grid,
  .bl-testimonial-grid,
  .bl-faq-grid,
  .bl-benefits-grid,
  .bl-contact-wrap {
    grid-template-columns: 1fr;
  }

  .bl-path-card.bl-featured {
    transform: none;
  }

  .bl-nav-links,
  .bl-nav-actions {
    display: none;
  }

  .bl-menu-toggle {
    display: inline-flex;
  }

  .bl-mobile-menu.bl-open {
    display: grid;
    gap: 12px;
  }

  .bl-mobile-menu a,
  .bl-mobile-menu .bl-btn,
  .bl-mobile-menu .bl-lang-btn {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .bl-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .bl-hero {
    padding-top: 44px;
  }

  .bl-site-header .bl-nav {
    min-height: 72px;
  }

  .bl-subtext,
  .bl-section-head p,
  .bl-cta-band p {
    font-size: 16px;
  }

  .bl-btn,
  .bl-lang-btn {
    width: 100%;
  }

  .bl-hero-actions {
    display: grid;
  }

  .bl-panel,
  .bl-path-card,
  .bl-solution-card,
  .bl-benefit-card,
  .bl-testimonial,
  .bl-faq-item,
  .bl-cred-card,
  .bl-cta-band,
  .bl-contact-info,
  .bl-contact-form-box,
  .bl-hero-card {
    padding: 22px;
  }

  .bl-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bl-contact-info h3 {
    font-size: 26px;
  }

  .bl-hero h1 {
    font-size: clamp(32px, 9vw, 52px);
  }
}