/* Hanooon Lead Engine — Light Minimal Theme v2.0 */
.hle-page {
  --hle-bg: #ffffff;
  --hle-panel: #ffffff;
  --hle-panel-2: #f5f7f6;
  --hle-line: #e4eae7;
  --hle-line-strong: #c8d6d0;
  --hle-text: #111917;
  --hle-muted: #6b7c75;
  --hle-green: #0f9f5a;
  --hle-green-2: #0c8049;
  --hle-green-light: #f0faf5;
  --hle-dark-text: #ffffff;
  background: var(--hle-bg);
  color: var(--hle-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
.hle-page * { box-sizing: border-box; }
.hle-page a { color: inherit; }

/* ── Astra header — light ─────────────────────────────── */
#masthead,
.ast-primary-header-bar {
  background: #ffffff !important;
  border-bottom: 1px solid #e4eae7 !important;
  box-shadow: none !important;
}
.ast-primary-header-bar .ast-builder-grid-row * {
  color: #111917 !important;
}
#colophon,
#colophon.site-footer,
.site-footer {
  display: none !important;
}

/* ── Page title / padding resets ─────────────────────── */
body.home .entry-title,
body.home h1.entry-title,
body.home .entry-header,
body.home .ast-article-single .entry-header,
.page-id-23 .entry-title,
.page-id-23 .entry-header,
.page-id-25 .entry-title,
.page-id-25 .entry-header {
  display: none !important;
}
body.home .site-content .ast-container,
.page-id-23 .site-content .ast-container,
.page-id-25 .site-content .ast-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.home .site-main,
body.home article.page,
body.home .entry-content,
.page-id-23 .site-main,
.page-id-23 article.page,
.page-id-23 .entry-content,
.page-id-25 .site-main,
.page-id-25 article.page,
.page-id-25 .entry-content {
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Layout ───────────────────────────────────────────── */
.hle-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Hero ─────────────────────────────────────────────── */
.hle-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  background: #f8fbf9;
  border-bottom: 1px solid var(--hle-line);
  overflow: hidden;
}
.hle-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .65fr);
  gap: 58px;
  align-items: center;
  padding: 72px 0;
}

/* ── Badge / Label ────────────────────────────────────── */
.hle-badge,
.hle-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 159, 90, .28);
  background: rgba(15, 159, 90, .07);
  color: var(--hle-green);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hle-badge:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hle-green);
}

/* ── Headings ─────────────────────────────────────────── */
.hle-h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  color: var(--hle-text);
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: .97;
  font-weight: 950;
  letter-spacing: -.02em;
}
.hle-h1 em {
  color: var(--hle-green);
  font-style: normal;
}
.hle-h2 {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -.01em;
}

/* ── Sub text ─────────────────────────────────────────── */
.hle-hero-sub,
.hle-section-desc {
  max-width: 680px;
  margin: 0;
  color: var(--hle-muted);
  font-size: 19px;
  line-height: 1.6;
}

/* ── CTA row ──────────────────────────────────────────── */
.hle-cta-row,
.hle-cta-row-center {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hle-cta-row-center { justify-content: center; }

/* ── Buttons ──────────────────────────────────────────── */
.hle-btn,
.hle-submit-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 20px;
  border: 1px solid transparent;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all .15s ease;
}
.hle-btn-green,
.hle-submit-btn {
  background: var(--hle-green);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(15, 159, 90, .22);
}
.hle-btn-green:hover,
.hle-submit-btn:hover {
  background: var(--hle-green-2);
  box-shadow: 0 6px 22px rgba(15, 159, 90, .30);
  transform: translateY(-1px);
}
.hle-btn-ghost {
  background: #ffffff;
  border-color: var(--hle-line-strong);
  color: var(--hle-text) !important;
}
.hle-btn-ghost:hover {
  border-color: var(--hle-green);
  color: var(--hle-green) !important;
}
.hle-btn-dark {
  background: #111917;
  color: #ffffff !important;
  border-color: #111917;
}

/* ── Stats ────────────────────────────────────────────── */
.hle-stats {
  width: min(480px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid var(--hle-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.hle-stat {
  min-height: 78px;
  padding: 16px 20px;
  border-right: 1px solid var(--hle-line);
}
.hle-stat:last-child { border-right: 0; }
.hle-stat strong {
  display: block;
  color: var(--hle-text);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}
.hle-stat span {
  display: block;
  margin-top: 6px;
  color: var(--hle-muted);
  font-size: 12px;
}

/* ── Form Panel ───────────────────────────────────────── */
.hle-panel {
  background: #ffffff;
  border: 1px solid var(--hle-line);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
}
.hle-panel-title {
  margin: 0 0 6px;
  color: var(--hle-text);
  font-size: 22px;
  font-weight: 900;
}
.hle-panel-sub {
  margin: 0 0 20px;
  color: var(--hle-muted);
  font-size: 14px;
  line-height: 1.5;
}
.hle-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
}
.hle-tab {
  min-height: 42px;
  border-radius: 7px;
  border: 1px solid var(--hle-line);
  background: #f8f9f8;
  color: var(--hle-muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .12s ease;
}
.hle-tab:hover {
  border-color: var(--hle-green);
  color: var(--hle-green);
}
.hle-tab.is-active {
  background: var(--hle-green);
  color: #ffffff;
  border-color: var(--hle-green);
}

/* ── Form fields ──────────────────────────────────────── */
.hle-form {
  display: grid;
  gap: 11px;
}
.hle-field {
  display: grid;
  gap: 5px;
}
.hle-field label {
  display: block;
  color: #374843;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hle-field input,
.hle-field select,
.hle-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--hle-line);
  border-radius: 7px;
  background: #fff;
  color: var(--hle-text);
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  transition: border-color .12s, box-shadow .12s;
}
.hle-field input:focus,
.hle-field select:focus,
.hle-field textarea:focus {
  outline: none;
  border-color: var(--hle-green);
  box-shadow: 0 0 0 3px rgba(15, 159, 90, .12);
}
.hle-field input::placeholder,
.hle-field textarea::placeholder { color: #b0bab6; }
.hle-field textarea {
  min-height: 88px;
  resize: vertical;
}
.hle-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hle-submit-btn {
  width: 100%;
  margin-top: 4px;
  min-height: 48px;
  font-size: 15px;
}
.hle-form-note {
  margin: 0;
  text-align: center;
  color: var(--hle-muted);
  font-size: 12px;
}

/* ── Status ───────────────────────────────────────────── */
.hle-status {
  display: none;
  border-radius: 7px;
  padding: 12px;
  font-weight: 700;
  font-size: 14px;
}
.hle-status.is-visible { display: block; }
.hle-status.is-ok  { background: rgba(15,159,90,.09); color: #0a7044; border: 1px solid rgba(15,159,90,.25); }
.hle-status.is-error { background: rgba(220,53,69,.08); color: #b02a37; border: 1px solid rgba(220,53,69,.22); }

/* ── Sections ─────────────────────────────────────────── */
.hle-section {
  padding: 80px 0;
  background: #ffffff;
  color: var(--hle-text);
}
.hle-section-dark {
  background: #111917;
  color: #f2f7f5;
}
.hle-section-alt {
  background: #f7faf8;
}
.hle-section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.hle-section:not(.hle-section-dark) .hle-section-desc { color: var(--hle-muted); }

/* ── Trust bar ────────────────────────────────────────── */
.hle-trust {
  background: #f7faf8;
  border-top: 1px solid var(--hle-line);
  border-bottom: 1px solid var(--hle-line);
  padding: 16px 0;
}
.hle-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: center;
}
.hle-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #374843;
  font-size: 13px;
  font-weight: 600;
}
.hle-trust-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(15,159,90,.12);
  display: grid;
  place-items: center;
  color: var(--hle-green);
  font-size: 10px;
  font-weight: 900;
}

/* ── Service cards ────────────────────────────────────── */
.hle-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.hle-service-card,
.hle-step,
.hle-why-card,
.hle-vendor-card {
  border: 1px solid var(--hle-line);
  border-radius: 10px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: box-shadow .15s, border-color .15s;
}
.hle-service-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
  border-color: var(--hle-line-strong);
}
.hle-section-alt .hle-service-card,
.hle-section-alt .hle-step,
.hle-section-alt .hle-why-card {
  background: #ffffff;
}
.hle-service-icon,
.hle-why-icon,
.hle-vendor-card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--hle-green-light);
  color: var(--hle-green);
  font-size: 19px;
}
.hle-service-num,
.hle-step-num {
  margin-top: 16px;
  color: var(--hle-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.hle-service-name,
.hle-step h3,
.hle-why-card h3 {
  margin: 8px 0 6px;
  color: var(--hle-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}
.hle-service-desc,
.hle-step p,
.hle-why-card p,
.hle-vendor-card span {
  margin: 0;
  color: var(--hle-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ── Steps ────────────────────────────────────────────── */
.hle-steps,
.hle-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hle-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── CTA section ──────────────────────────────────────── */
.hle-cta-section {
  padding: 80px 0;
  text-align: center;
  background: #111917;
  color: #f2f7f5;
}
.hle-cta-section .hle-section-desc {
  margin: 14px auto 0;
  color: #93b3a0;
}

/* ── Vendor section ───────────────────────────────────── */
.hle-vendor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.hle-vendor-cards {
  display: grid;
  gap: 12px;
}
.hle-vendor-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f7faf8;
  border-color: var(--hle-line);
}
.hle-vendor-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--hle-text);
  font-size: 16px;
  font-weight: 800;
}

/* ── Footer ───────────────────────────────────────────── */
.hle-footer {
  padding: 44px 0 28px;
  background: #111917;
  color: #93b3a0;
}
.hle-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 36px;
}
.hle-footer-brand {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
}
.hle-footer-tagline {
  max-width: 440px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.hle-footer-col {
  display: grid;
  gap: 8px;
}
.hle-footer-col h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
.hle-footer-col a {
  color: #93b3a0;
  text-decoration: none;
  font-size: 14px;
}
.hle-footer-col a:hover { color: #ffffff; }
.hle-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1040px) {
  .hle-hero-grid,
  .hle-vendor-grid {
    grid-template-columns: 1fr;
  }
  .hle-panel {
    max-width: 680px;
  }
  .hle-services-grid,
  .hle-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .hle-wrap {
    width: min(100% - 28px, 1200px);
  }
  .hle-hero {
    min-height: auto;
  }
  .hle-hero-grid {
    padding: 44px 0 50px;
    gap: 32px;
  }
  .hle-badge,
  .hle-section-label {
    max-width: 100%;
    border-radius: 7px;
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }
  .hle-h1 {
    margin-top: 18px;
    font-size: 40px;
    line-height: 1.04;
  }
  .hle-hero-sub,
  .hle-section-desc {
    font-size: 16px;
  }
  .hle-cta-row,
  .hle-cta-row-center,
  .hle-stats,
  .hle-services-grid,
  .hle-steps,
  .hle-why-grid,
  .hle-footer-grid,
  .hle-footer-bottom,
  .hle-2col {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hle-btn,
  .hle-submit-btn {
    width: 100%;
    min-height: 50px;
  }
  .hle-stat {
    border-right: 0;
    border-bottom: 1px solid var(--hle-line);
  }
  .hle-stat:last-child {
    border-bottom: 0;
  }
  .hle-panel {
    padding: 20px;
  }
  .hle-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .hle-section,
  .hle-cta-section {
    padding: 52px 0;
  }
  .hle-h2 {
    font-size: 32px;
  }
}
