/**
 * Landing newsletter BIZZ — logo, hero vizual, carduri, formular vizibil
 */
.bnf-landing {
  --bnf-display: Georgia, "Times New Roman", Times, serif;
  --bnf-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--bnf-body);
}

.bnf-skip {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bnf-skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--bizz-accent);
  color: var(--bizz-cta-text);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ——— Top bar + logo ——— */
.bnf-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(28, 34, 41, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.bnf-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.bnf-logo-img {
  width: auto;
  max-width: min(220px, 55vw);
  height: clamp(40px, 8vw, 52px);
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* SVG desenat în HTML (nu mai depinde de fișier .svg pe server) */
.bnf-inline-svg {
  display: block;
  width: 100%;
  height: auto;
}

.bnf-form-card-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ——— Hero band ——— */
.bnf-hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(77, 181, 168, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(77, 181, 168, 0.06), transparent 50%),
    var(--bizz-bg);
  padding: 1.5rem 1.25rem 2.5rem;
}

.bnf-hero-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .bnf-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.bnf-hero-figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(77, 181, 168, 0.08);
}

.bnf-hero-photo {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.bnf-hero-copy {
  text-align: center;
}

@media (min-width: 900px) {
  .bnf-hero-copy {
    text-align: left;
  }
}

.bnf-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bizz-accent-soft);
}

.bnf-hero-copy h1 {
  font-family: var(--bnf-display);
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1rem;
  color: var(--bizz-text);
}

.bnf-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--bizz-text-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.bnf-hero-copy .bnf-lead {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .bnf-hero-copy .bnf-lead {
    margin-left: 0;
    margin-right: 0;
  }
}

.bnf-lead strong {
  color: var(--bizz-accent-soft);
}

/* ——— Main column ——— */
.bnf-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.bnf-main.bnf-wrap {
  max-width: 52rem;
  padding-top: 0.5rem;
}

/* ——— Buttons ——— */
.bnf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(165deg, #5ec4b6 0%, var(--bizz-accent-deep) 100%);
  background-color: var(--bizz-accent);
  color: var(--bizz-cta-text);
  box-shadow:
    0 4px 20px rgba(61, 160, 148, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: filter 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.bnf-btn:hover {
  filter: brightness(1.05);
  box-shadow:
    0 8px 28px rgba(61, 160, 148, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.bnf-btn:active {
  transform: scale(0.98);
}

.bnf-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.bnf-btn--compact {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  border-radius: 10px;
}

.bnf-btn--block {
  width: 100%;
  margin-top: 0.25rem;
}

/* ——— Sections ——— */
.bnf-section {
  margin-top: 2.5rem;
  padding: 1.85rem 1.6rem;
  background: var(--bizz-bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.bnf-section h2 {
  font-family: var(--bnf-display);
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--bizz-text);
}

.bnf-section h3 {
  font-size: 1.02rem;
  margin: 1.2rem 0 0.45rem;
  color: var(--bizz-accent-soft);
  font-weight: 600;
}

.bnf-section p,
.bnf-section li {
  color: var(--bizz-text-muted);
  line-height: 1.65;
  margin: 0 0 0.65rem;
}

.bnf-brand-line {
  margin-top: 1.25rem !important;
  margin-bottom: 0.35rem !important;
  color: var(--bizz-accent) !important;
  font-size: 1.1rem !important;
}

.bnf-section-lead {
  color: var(--bizz-text) !important;
  font-size: 1.05rem;
}

.bnf-bullets {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.bnf-bullets li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--bizz-text-muted);
}

.bnf-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--bizz-accent);
  box-shadow: 0 0 10px rgba(77, 181, 168, 0.5);
}

.bnf-bullets strong {
  color: var(--bizz-text);
}

.bnf-cta-row {
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.bnf-cta-row--center {
  text-align: center;
}

.bnf-center-strong {
  margin-top: 1.35rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  color: var(--bizz-text);
  font-size: 1.05rem;
}

/* Split: imagine + text */
.bnf-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .bnf-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    gap: 2rem;
  }
}

.bnf-split-media {
  margin: 0;
}

.bnf-split-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.bnf-split-copy h2 {
  margin-top: 0;
}

.bnf-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bnf-checks li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.05rem;
}

.bnf-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bizz-accent);
  font-weight: 700;
}

.bnf-checks strong {
  color: var(--bizz-text);
  display: block;
  margin-bottom: 0.25rem;
}

.bnf-quote {
  font-size: 1.02rem;
  color: var(--bizz-text);
  margin: 1.35rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--bizz-accent);
}

/* ——— Form card ——— */
.bnf-form-card {
  margin-top: 2.75rem;
  padding: 2rem 1.6rem 2.25rem;
  background: var(--bizz-bg-card);
  border-radius: 18px;
  border: 1px solid rgba(77, 181, 168, 0.18);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color-scheme: light;
}

.bnf-form-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bnf-form-card-logo {
  height: 36px;
  width: auto;
  opacity: 0.95;
}

.bnf-form-card h2 {
  margin: 0;
  font-family: var(--bnf-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--bizz-text);
}

.bnf-form-note {
  font-size: 0.9rem;
  color: var(--bizz-text-muted);
  margin: 0 0 1.35rem;
  line-height: 1.55;
  text-align: center;
}

.bnf-form-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bizz-text-muted);
  margin: 0.85rem 0 0.4rem;
}

.bnf-form-card input[type="text"],
.bnf-form-card input[type="email"],
.bnf-form-card input[type="tel"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #1a1f26;
  font-size: 1rem;
  font-family: inherit;
}

.bnf-form-card input::placeholder {
  color: #8892a0;
}

.bnf-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1.35rem 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--bizz-text-muted);
}

.bnf-consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.bnf-consent-label {
  margin: 0 !important;
  font-weight: 400 !important;
}

.bnf-status {
  min-height: 1.5rem;
  font-size: 0.9rem;
  margin-top: 0.85rem;
  text-align: center;
}

.bnf-status.bnf-err {
  color: #f0a8a8;
}

.bnf-status.bnf-ok {
  color: var(--bizz-accent-soft);
}
