/* BoligKlar — launch landing pages (/skriv-dig-op/) */

html {
  scroll-behavior: smooth;
}

.bk-ll {
  font-family: Manrope, Helvetica, Arial, sans-serif;
  color: #1a1a18;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bk-ll *,
.bk-ll *::before,
.bk-ll *::after {
  box-sizing: border-box;
}

.bk-ll-serif {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
}

.bk-ll-green {
  color: #22bd4b;
}

.bk-ll-link {
  color: inherit;
  text-decoration: none;
  transition: color 140ms;
}

.bk-ll-link:hover {
  color: #1aab40;
}

@keyframes bk-ll-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bk-ll-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.6);
    opacity: 0.5;
  }
}

.bk-ll-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22bd4b;
  display: inline-block;
  animation: bk-ll-pulse 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

/* Nav */
.bk-ll-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #dae6e6;
}

.bk-ll-nav__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bk-ll-logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: #1a1a18;
  text-decoration: none;
  flex-shrink: 0;
}

.bk-ll-logo--sm {
  font-size: 18px;
}

.bk-ll-logo em {
  font-style: italic;
  color: #22bd4b;
}

.bk-ll-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.bk-ll-nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: #6a6a65;
}

.bk-ll-nav__right {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bk-ll-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #dae6e6;
  border-radius: 12px;
  background: #fff;
  color: #1a1a18;
  cursor: pointer;
  flex-shrink: 0;
}

.bk-ll-nav__toggle[aria-expanded="true"] {
  background: #f5f5f5;
}

.bk-ll-nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 12px 20px 16px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #dae6e6;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bk-ll-nav__menu:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bk-ll-nav__menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #4a4a45;
  text-decoration: none;
}

.bk-ll-nav__menu a:hover {
  color: #1aab40;
}

.bk-ll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  height: auto;
  padding: 10px 20px;
  border-radius: 99px;
  background: #22bd4b;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 220ms, transform 140ms;
  touch-action: manipulation;
}

.bk-ll-btn:hover {
  background: #1aab40;
}

.bk-ll-btn:active {
  transform: translateY(1px);
}

.bk-ll-btn--lg {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
}

.bk-ll-btn--block {
  width: 100%;
}

.bk-ll-signup__submit-gap {
  margin-top: 10px;
}

.bk-ll-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 14px;
  min-height: 44px;
  padding: 6px 0;
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
}

.bk-ll-consent__input {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  margin: 1px 0 0;
  flex-shrink: 0;
  accent-color: #22bd4b;
  cursor: pointer;
}

.bk-ll-consent__text {
  font-size: 13px;
  line-height: 1.5;
  color: #4a4a45;
}

.bk-ll-consent__text a {
  color: #15803d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bk-ll-consent__text a:hover {
  color: #1aab40;
}

.bk-ll-hero--center .bk-ll-consent {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.bk-ll-final--dark .bk-ll-consent__text {
  color: #9a9a92;
}

.bk-ll-final--dark .bk-ll-consent__text a {
  color: #22bd4b;
}

.bk-ll-final--dark .bk-ll-consent__text a:hover {
  color: #1aab40;
}

.bk-ll-final__fineprint {
  font-size: 13px;
  color: #4a4a45;
  margin-top: 14px;
}

.bk-ll-card--padded {
  padding: 14px 15px;
}

.bk-ll-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.bk-ll-card__row--border {
  padding-bottom: 10px;
  border-bottom: 1px solid #dae6e6;
}

.bk-ll-card__row--border + .bk-ll-card__row {
  padding-top: 10px;
}

.bk-ll-card__row-label {
  font-size: 13px;
  color: #4a4a45;
}

.bk-ll-card__row-value {
  font-size: 18px;
  color: #1a1a18;
}

.bk-ll-card__row-value--green {
  color: #15803d;
}

.bk-ll-mock__grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.bk-ll-mock__tile {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 15px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a18;
}

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

/* Layout */
.bk-ll-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left));
  padding-right: max(20px, env(safe-area-inset-right));
}

.bk-ll-container--narrow {
  max-width: 1100px;
}

.bk-ll-container--cta {
  max-width: 600px;
}

.bk-ll-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9a9a92;
}

.bk-ll-eyebrow--green {
  color: #15803d;
}

.bk-ll-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  background: #e8f7ed;
  border-radius: 99px;
  margin-bottom: 22px;
}

.bk-ll-badge__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #15803d;
}

/* Hero */
.bk-ll-hero {
  background: #ffffff;
  padding: 64px 0 56px;
}

.bk-ll-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.bk-ll-hero__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.125rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #1a1a18;
  margin: 0 0 22px;
  text-wrap: balance;
}

.bk-ll-hero__title em {
  font-style: italic;
  color: #22bd4b;
}

.bk-ll-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: #4a4a45;
  max-width: 48ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.bk-ll-phone-wrap {
  display: flex;
  justify-content: center;
  animation: bk-ll-rise 600ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.bk-ll-phone {
  width: min(340px, 100%);
  background: #1a1a18;
  border-radius: 46px;
  padding: 11px;
  border: 1px solid rgba(0, 0, 0, 0.16);
}

.bk-ll-phone__screen {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #f5f5f5;
}

.bk-ll-phone__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 28px;
  background: #1a1a18;
  border-radius: 16px;
  z-index: 5;
}

.bk-ll-phone__header {
  padding: 48px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #dae6e6;
}

.bk-ll-phone__body {
  padding: 16px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.bk-ll-card {
  background: #fff;
  border: 1px solid #dae6e6;
  border-radius: 16px;
  overflow: hidden;
}

.bk-ll-card__img {
  height: 128px;
  background: #e6e8e2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9a92;
}

.bk-ll-card__body {
  padding: 13px 15px 15px;
}

.bk-ll-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a18;
}

.bk-ll-card__meta {
  font-size: 11.5px;
  color: #9a9a92;
  margin-top: 2px;
}

.bk-ll-card__price {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -0.01em;
  color: #1a1a18;
  margin-top: 9px;
}

.bk-ll-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #e8f7ed;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
}

/* Signup form */
.bk-ll-signup {
  max-width: 520px;
}

.bk-ll-signup--center {
  max-width: 480px;
  margin: 0 auto;
}

.bk-ll-signup__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bk-ll-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #dae6e6;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  color: #1a1a18;
  transition: border-color 140ms, box-shadow 140ms;
  touch-action: manipulation;
}

.bk-ll-input--email {
  flex: 1.3;
}

.bk-ll-input:focus {
  outline: none;
  border-color: #22bd4b;
  box-shadow: 0 0 0 3px #e8f7ed;
}

.bk-ll-signup__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #9a9a92;
}

.bk-ll-signup__note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.bk-ll-signup__error {
  display: none;
  font-size: 13px;
  font-weight: 600;
  color: #c44536;
  margin-top: 9px;
}

.bk-ll-signup__success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: #e8f7ed;
  border: 1px solid #cfeed7;
  border-radius: 16px;
}

.bk-ll-signup__success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #22bd4b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bk-ll-signup__success-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #1a1a18;
}

.bk-ll-signup__success-text {
  font-size: 14px;
  color: #4a4a45;
  line-height: 1.5;
  margin-top: 3px;
}

[data-launch-form-wrap][data-state="success"] [data-launch-form-panel] {
  display: none;
}

[data-launch-form-wrap][data-state="success"] .bk-ll-signup__success {
  display: flex;
}

[data-launch-form-wrap][data-state="error"] .bk-ll-signup__error {
  display: block;
}

/* Trust strip */
.bk-ll-trust {
  background: #fafafa;
  border-top: 1px solid #dae6e6;
  border-bottom: 1px solid #dae6e6;
}

.bk-ll-trust__inner {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: #6a6a65;
}

.bk-ll-trust__sep {
  color: #dae6e6;
}

/* Features */
.bk-ll-features {
  background: #ffffff;
  padding: 72px 0;
}

.bk-ll-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.bk-ll-section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1a1a18;
  margin: 16px 0 0;
  text-wrap: balance;
}

.bk-ll-section-head h2 em {
  font-style: italic;
  color: #22bd4b;
}

.bk-ll-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.bk-ll-feature:last-child {
  margin-bottom: 0;
}

.bk-ll-feature--reverse .bk-ll-feature__visual {
  order: 2;
}

.bk-ll-feature--reverse .bk-ll-feature__copy {
  order: 1;
}

.bk-ll-feature__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 14px;
}

.bk-ll-feature h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #1a1a18;
  margin: 0 0 16px;
  text-wrap: balance;
}

.bk-ll-feature p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  max-width: 42ch;
  margin: 0;
}

.bk-ll-mock {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #dae6e6;
  border-radius: 16px;
  padding: 22px;
}

.bk-ll-mock__center {
  display: flex;
  justify-content: center;
}

.bk-ll-list-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px;
  background: #f5f5f5;
  border-radius: 14px;
}

.bk-ll-list-item + .bk-ll-list-item {
  margin-top: 10px;
}

.bk-ll-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 700;
  flex-shrink: 0;
}

.bk-ll-tag--ok {
  background: #e8f7ed;
  color: #15803d;
}

.bk-ll-tag--warn {
  background: #fbf3e2;
  color: #946017;
}

/* How it works */
.bk-ll-how {
  background: #f5f5f5;
  padding: 72px 0;
}

.bk-ll-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bk-ll-step {
  background: #fff;
  border: 1px solid #dae6e6;
  border-radius: 16px;
  padding: 32px 28px;
}

.bk-ll-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a18;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
}

.bk-ll-step__num--green {
  background: #22bd4b;
}

.bk-ll-step h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: #1a1a18;
  margin: 0 0 9px;
}

.bk-ll-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}

/* På din side band */
.bk-ll-band {
  background: #1a1a18;
  padding: 80px 24px;
  text-align: center;
}

.bk-ll-band h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 22px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.bk-ll-band h2 em {
  font-style: italic;
  color: #22bd4b;
}

.bk-ll-band p {
  font-size: 18px;
  line-height: 1.6;
  color: #9a9a92;
  margin: 0 auto;
  max-width: 720px;
  text-wrap: pretty;
}

/* Final CTA */
.bk-ll-final {
  background: #e8f7ed;
  padding: 72px 24px;
  text-align: center;
}

.bk-ll-final h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1a1a18;
  margin: 16px 0;
  text-wrap: balance;
}

.bk-ll-final__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.bk-ll-final .bk-ll-input {
  border-color: #cfeed7;
}

.bk-ll-final .bk-ll-signup__success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px;
  background: #fff;
}

/* Footer */
.bk-ll-footer {
  background: #1a1a18;
  padding: 48px 24px;
}

.bk-ll-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bk-ll-footer__logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
}

.bk-ll-footer__logo em {
  font-style: italic;
  color: #22bd4b;
}

.bk-ll-footer__tagline {
  font-size: 13px;
  color: #9a9a92;
  margin-top: 8px;
}

.bk-ll-footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.bk-ll-footer__links a {
  font-size: 14px;
  font-weight: 600;
  color: #9a9a92;
}

.bk-ll-footer__legal {
  max-width: 1200px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid #262626;
  font-size: 12px;
  color: #6a6a65;
}

.bk-ll-footer__legal a {
  color: #9a9a92;
}

/* Responsive — tablet */
@media (max-width: 960px) {
  .bk-ll-hero__grid,
  .bk-ll-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bk-ll-feature {
    margin-bottom: 56px;
  }

  .bk-ll-feature--reverse .bk-ll-feature__visual,
  .bk-ll-feature--reverse .bk-ll-feature__copy {
    order: unset;
  }

  .bk-ll-steps {
    grid-template-columns: 1fr;
  }

  .bk-ll-nav__links {
    display: none;
  }

  .bk-ll-nav__right {
    display: flex;
  }

  .bk-ll-nav__toggle {
    display: inline-flex;
  }

  .bk-ll-features,
  .bk-ll-how {
    padding: 48px 0;
  }

  .bk-ll-section-head {
    margin-bottom: 40px;
  }

  .bk-ll-band {
    padding: 56px max(20px, env(safe-area-inset-left));
  }

  .bk-ll-final {
    padding: 48px max(20px, env(safe-area-inset-right));
  }
}

/* Responsive — mobil */
@media (max-width: 640px) {
  .bk-ll-nav__inner {
    padding: 12px max(16px, env(safe-area-inset-left)) 12px max(16px, env(safe-area-inset-right));
  }

  .bk-ll-logo {
    font-size: 20px;
  }

  .bk-ll-nav__cta {
    min-height: 44px;
    height: auto;
    padding: 8px 14px;
    font-size: 13px;
  }

  .bk-ll-hero {
    padding: 32px 0 28px;
  }

  .bk-ll-hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    margin-bottom: 16px;
  }

  .bk-ll-hero__lead {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .bk-ll-badge {
    margin-bottom: 16px;
  }

  .bk-ll-badge__text {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  /* Skjul telefon-mockup — signup først på mobil */
  .bk-ll-phone-wrap {
    display: none;
  }

  .bk-ll-signup,
  .bk-ll-signup--center {
    max-width: none;
  }

  .bk-ll-signup__row {
    flex-direction: column;
  }

  .bk-ll-input,
  .bk-ll-input--email {
    width: 100%;
    flex: none;
  }

  .bk-ll-signup__success {
    flex-direction: column;
    align-items: flex-start;
  }

  .bk-ll-signup__note {
    align-items: flex-start;
    font-size: 12px;
  }

  .bk-ll-signup__row .bk-ll-btn--lg {
    width: 100%;
  }

  .bk-ll-trust__inner {
    padding: 16px max(16px, env(safe-area-inset-left));
    font-size: 13px;
    gap: 10px;
  }

  .bk-ll-features,
  .bk-ll-how {
    padding: 40px 0;
  }

  .bk-ll-section-head {
    margin-bottom: 32px;
  }

  .bk-ll-feature {
    gap: 24px;
    margin-bottom: 40px;
  }

  .bk-ll-feature p {
    font-size: 16px;
    max-width: none;
  }

  .bk-ll-mock {
    padding: 18px 16px;
  }

  .bk-ll-list-item {
    padding: 11px;
    gap: 10px;
  }

  .bk-ll-step {
    padding: 24px 20px;
  }

  .bk-ll-band {
    padding: 40px max(16px, env(safe-area-inset-left));
  }

  .bk-ll-band p {
    font-size: 16px;
  }

  .bk-ll-final {
    padding: 40px max(16px, env(safe-area-inset-left));
  }

  .bk-ll-final__lead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .bk-ll-footer {
    padding: 32px max(16px, env(safe-area-inset-left));
  }

  .bk-ll-footer__inner {
    flex-direction: column;
    gap: 20px;
  }

  .bk-ll-footer__links {
    gap: 16px 20px;
  }

  .bk-ll-signup__success {
    padding: 18px 16px;
  }

  .bk-ll-signup__success-title {
    font-size: 19px;
  }
}

/* Responsive — meget smalle skærme */
@media (max-width: 380px) {
  .bk-ll-nav__cta {
    padding: 0 12px;
    font-size: 12px;
  }

  .bk-ll-trust__sep {
    display: none;
  }

  .bk-ll-trust__inner {
    flex-direction: column;
    gap: 6px;
  }
}

/* ─── Variant B — centered hero, principper, guides ─────────────────────── */

@keyframes bk-ll-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.bk-ll-hero--center {
  background: #f5f5f5;
  padding: 72px 0 56px;
  text-align: center;
}

.bk-ll-hero--center__inner {
  max-width: 880px;
  margin: 0 auto;
}

.bk-ll-hero__subtitle {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.4375rem);
  line-height: 1.4;
  color: #4a4a45;
  max-width: 30ch;
  margin: 0 auto 32px;
  text-wrap: balance;
}

.bk-ll-hero--center .bk-ll-signup {
  margin-left: auto;
  margin-right: auto;
}

.bk-ll-hero--center .bk-ll-signup__note {
  justify-content: center;
}

.bk-ll-phone-scene {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 64px auto 0;
}

.bk-ll-phone--tall .bk-ll-phone__screen {
  min-height: 680px;
  display: flex;
  flex-direction: column;
}

.bk-ll-phone--tall .bk-ll-phone__body {
  flex: 1;
}

.bk-ll-float-card {
  position: absolute;
  background: #fff;
  border: 1px solid #dae6e6;
  border-radius: 16px;
  padding: 14px 16px;
  animation: bk-ll-float 5s ease-in-out infinite;
}

.bk-ll-float-card--right {
  top: 110px;
  right: -72px;
  width: min(208px, 42vw);
}

.bk-ll-float-card--left {
  bottom: 56px;
  left: -68px;
  width: min(188px, 40vw);
  animation-delay: 1.2s;
}

.bk-ll-feature__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.bk-ll-feature__tag {
  padding: 8px 14px;
  background: #f5f5f5;
  border: 1px solid #dae6e6;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: #6a6a65;
}

.bk-ll-principles {
  background: #f5f5f5;
  padding: 72px 0;
}

.bk-ll-principles__head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1a1a18;
  margin: 16px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}

.bk-ll-principles__head h2 em {
  font-style: italic;
  color: #22bd4b;
}

.bk-ll-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.bk-ll-principle__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
  margin-bottom: 18px;
}

.bk-ll-principle h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a18;
  margin: 0 0 8px;
}

.bk-ll-principle p {
  font-size: 14px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}

.bk-ll-guides {
  background: #fff;
  padding: 72px 0;
}

.bk-ll-guides__head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #1a1a18;
  margin: 16px 0 0;
  max-width: 16ch;
  text-wrap: balance;
}

.bk-ll-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.bk-ll-guide-card {
  background: #fff;
  border: 1px solid #dae6e6;
  border-radius: 16px;
  overflow: hidden;
}

.bk-ll-guide-card__img {
  height: 140px;
  background: #e6e8e2;
}

.bk-ll-guide-card__body {
  padding: 20px 20px 24px;
}

.bk-ll-guide-card__meta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
  margin-bottom: 10px;
}

.bk-ll-guide-card__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1a1a18;
  text-wrap: pretty;
}

.bk-ll-final--dark {
  background: #1a1a18;
}

.bk-ll-final--dark h2 {
  color: #fff;
}

.bk-ll-final--dark .bk-ll-final__lead {
  color: #9a9a92;
}

.bk-ll-final--dark .bk-ll-input {
  background: #262626;
  border-color: #262626;
  color: #fff;
}

.bk-ll-final--dark .bk-ll-input::placeholder {
  color: #6a6a65;
}

.bk-ll-final--dark .bk-ll-input:focus {
  border-color: #22bd4b;
  box-shadow: 0 0 0 3px rgba(34, 189, 75, 0.2);
}

.bk-ll-final--dark .bk-ll-final__fineprint {
  color: #9a9a92;
}

.bk-ll-final--dark .bk-ll-signup__error {
  color: #e8897c;
}

.bk-ll-final--dark .bk-ll-signup__success {
  background: #262626;
  border-color: #262626;
}

.bk-ll-final--dark .bk-ll-signup__success-title {
  color: #fff;
}

.bk-ll-final--dark .bk-ll-signup__success-text {
  color: #9a9a92;
}

.bk-ll-footer--extended {
  padding: 64px 24px 40px;
}

.bk-ll-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.bk-ll-footer__col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6a65;
  margin-bottom: 16px;
}

.bk-ll-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bk-ll-footer__col-links a {
  font-size: 14px;
  font-weight: 600;
  color: #9a9a92;
  text-decoration: none;
}

.bk-ll-footer__col-links a:hover {
  color: #22bd4b;
}

.bk-ll-footer__intro {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: #9a9a92;
  line-height: 1.5;
  margin: 14px 0 0;
  max-width: 34ch;
}

@media (max-width: 960px) {
  .bk-ll-hero--center {
    padding: 48px 0 40px;
  }

  .bk-ll-phone-scene {
    margin-top: 48px;
  }

  .bk-ll-float-card--right {
    right: -24px;
  }

  .bk-ll-float-card--left {
    left: -20px;
  }

  .bk-ll-principles,
  .bk-ll-guides {
    padding: 48px 0;
  }

  .bk-ll-principles__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .bk-ll-guides__grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .bk-ll-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .bk-ll-hero--center {
    padding: 32px 0 28px;
  }

  .bk-ll-hero__subtitle {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .bk-ll-phone-scene {
    display: none;
  }

  .bk-ll-principles__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .bk-ll-principles,
  .bk-ll-guides {
    padding: 40px 0;
  }
}
