/* British Publishers — Ebook LP (new SaaS-style UI) */
:root {
  --bp-navy: #0a1628;
  --bp-navy-mid: #132442;
  --bp-blue: #1e4d8c;
  /* Brand gold (primary theme) */
  --bp-accent: #f8ba21;
  --bp-accent-2: #d9a010;
  --bp-accent-muted: rgba(248, 186, 33, 0.22);
  --bp-on-accent: #1a1406;
  /* Supporting tints */
  --bp-sky: #f8ba21;
  --bp-soft: #fff9ec;
  --bp-white: #ffffff;
  --bp-text: #1a2744;
  --bp-muted: #5c6880;
  --bp-border: #e8dfd0;
  --bp-link: #7a5a0e;
  --bp-pink: #f8ba21;
  --bp-radius: 16px;
  --bp-radius-lg: 24px;
  --bp-shadow: 0 18px 50px rgba(10, 22, 40, 0.12);
  --bp-font: "DM Sans", system-ui, -apple-system, sans-serif;
  --bp-serif: "Source Serif 4", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bp-font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bp-text);
  background: var(--bp-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--bp-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--bp-accent);
  outline-offset: 2px;
}

/* —— Top bar —— */
.lp-topbar {
  background: var(--bp-navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  padding: 0.4rem 0;
  position: relative;
  z-index: 1001;
}

.lp-topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lp-topbar a {
  color: inherit;
}

.lp-topbar__group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.lp-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.95;
}

.lp-topbar__item i {
  font-size: 12px;
  opacity: 0.85;
}

.lp-topbar__chat {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.lp-topbar__chat:hover {
  background: rgba(248, 186, 33, 0.25);
  border-color: rgba(248, 186, 33, 0.55);
  text-decoration: none;
}

.lp-topbar__chat:active {
  transform: scale(0.98);
}

/* —— Navbar —— */
.lp-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f8ba21;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #967720;
  transition: box-shadow 0.25s;
}

.lp-nav-wrap.is-scrolled {
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
}

.lp-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.lp-nav__brand:hover {
  text-decoration: none;
}

.lp-nav__brand img {
  height: 40px;
  width: auto;
  display: block;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav__links a {
  color: var(--bp-text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}

.lp-nav__links a:hover {
  color: var(--bp-accent-2);
  text-decoration: none;
}

.lp-nav__toggle {
  display: none;
  border: none;
  background: var(--bp-soft);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--bp-navy);
}

@media (max-width: 768px) {
  .lp-nav__toggle {
    display: flex;
  }

  .lp-nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(280px, 86vw);
    background: var(--bp-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 1002;
  }

  .lp-nav__links.is-open {
    transform: translateX(0);
  }

  .lp-nav__links li {
    width: 100%;
    border-bottom: 1px solid var(--bp-border);
  }

  .lp-nav__links a {
    display: block;
    padding: 1rem 0;
  }

  .lp-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.35);
    z-index: 999;
  }

  .lp-nav-overlay.is-open {
    display: block;
  }
}

/* —— Hero —— */
.lp-hero {
  position: relative;
  background: linear-gradient(145deg, #0a1628 0%, #dfac27  48%, #3d2f0a 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 10vw, 6rem);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
}

@media (max-width: 768px) {
  .lp-hero {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
  }
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% -10%, rgba(248, 186, 33, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(248, 186, 33, 0.18), transparent);
  pointer-events: none;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 960px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
  }
}

.lp-hero__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bp-sky);
  margin-bottom: 1rem;
  opacity: 0;
  animation: lpFadeUp 0.7s ease forwards;
}

.lp-hero__title {
  font-family: var(--bp-serif);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: lpFadeUp 0.75s ease 0.08s forwards;
}

.lp-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: rgba(253, 224, 140, 0.95);
}

.lp-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
  max-width: 34em;
  opacity: 0;
  animation: lpFadeUp 0.75s ease 0.15s forwards;
}

.lp-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  opacity: 0;
  animation: lpFadeUp 0.75s ease 0.22s forwards;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.lp-btn:hover {
  text-decoration: none;
}

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

.lp-btn--primary {
  background: linear-gradient(180deg, var(--bp-accent) 0%, var(--bp-accent-2) 100%);
  color: var(--bp-on-accent);
  box-shadow: 0 8px 28px rgba(248, 186, 33, 0.35);
}

.lp-btn--primary:hover {
  box-shadow: 0 12px 36px rgba(248, 186, 33, 0.45);
  color: var(--bp-on-accent);
}

.lp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(248, 186, 33, 0.65);
}

.lp-btn--ghost:hover {
  background: rgba(248, 186, 33, 0.18);
  color: #fff;
}

.lp-btn--outline {
  background: #fff;
  color: var(--bp-text);
  border: 1px solid var(--bp-border);
}

.lp-btn--outline:hover {
  border-color: var(--bp-accent);
  color: var(--bp-text);
}

.lp-hero__trust {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  animation: lpFadeUp 0.8s ease 0.3s forwards;
}

.lp-hero__trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bp-sky);
  margin-bottom: 0.75rem;
}

.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

/* Hero form card */
.lp-form-card {
  background: var(--bp-white);
  color: var(--bp-text);
  border-radius: var(--bp-radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--bp-shadow);
  opacity: 0;
  transform: translateY(16px);
  animation: lpFadeUp 0.85s ease 0.2s forwards;
}

.lp-form-card__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7209;
  margin: 0 0 1.25rem;
}

.lp-form-card .lp-field {
  margin-bottom: 1rem;
}

.lp-form-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--bp-muted);
  margin-bottom: 0.35rem;
}

.lp-form-card input,
.lp-form-card textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-form-card input:focus,
.lp-form-card textarea:focus {
  border-color: var(--bp-accent);
  box-shadow: 0 0 0 3px var(--bp-accent-muted);
  outline: none;
}

.lp-form-card textarea {
  min-height: 100px;
  resize: vertical;
}

.lp-form-card__disclaimer {
  font-size: 11px;
  color: var(--bp-muted);
  line-height: 1.45;
  margin: 0 0 1rem;
}

.lp-form-card__submit {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  border: none;
  background: linear-gradient(180deg, var(--bp-accent) 0%, var(--bp-accent-2) 100%);
  color: var(--bp-on-accent);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}

.lp-form-card__submit:hover {
  filter: brightness(1.04);
}

/* —— Trust logos strip —— */
.lp-trust-strip {
  background: #fff;
  padding: 2rem 1.25rem 2.5rem;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.lp-trust-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.lp-trust-strip__label {
  font-size: 12px;
  color: var(--bp-muted);
  margin-bottom: 1.25rem;
}

.lp-trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.55;
  filter: grayscale(100%);
}

.lp-trust-strip__logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* —— Services bento —— */
.lp-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
}

.lp-section--soft {
  background: linear-gradient(180deg, #f6f9ff 0%, #fff 100%);
}

.lp-section--muted {
  background: linear-gradient(180deg, #faf8f3 0%, #ffffff 100%);
}

.lp-section__head {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}

.lp-section__title {
  font-family: var(--bp-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  margin: 0;
  max-width: 18ch;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lp-section__title span {
  font-style: italic;
  font-weight: 500;
  color: #9a7209;
}

.lp-section__sub {
  max-width: 380px;
  margin: 0;
  color: var(--bp-muted);
  font-size: 1rem;
}

.lp-bento {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 900px) {
  .lp-bento {
    grid-template-columns: 1fr;
  }
}

.lp-bento__hero-card {
  background: linear-gradient(145deg, #2a2418 0%, #5c4810 40%, #9a7209 82%, #f8ba21 100%);
  color: #fff;
  border-radius: var(--bp-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.lp-bento__hero-card::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.lp-bento__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.lp-bento__hero-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  max-width: 14ch;
  line-height: 1.25;
}

.lp-bento__hero-card p {
  margin: 0 0 1.25rem;
  opacity: 0.9;
  font-size: 0.95rem;
  max-width: 36ch;
}

.lp-bento__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lp-card {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-lg);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (hover: hover) {
  .lp-card:hover {
    border-color: rgba(248, 186, 33, 0.45);
    box-shadow: 0 12px 36px rgba(248, 186, 33, 0.08);
  }
}

.lp-card__pill {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-muted);
  background: var(--bp-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.lp-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
}

.lp-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--bp-muted);
  line-height: 1.55;
}

.lp-bento__row3 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .lp-bento__row3 {
    grid-template-columns: 1fr;
  }
}

/* —— Feature split —— */
.lp-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
}

@media (max-width: 900px) {
  .lp-split {
    grid-template-columns: 1fr;
  }
}

.lp-split__visual {
  background: linear-gradient(160deg, #fff9ec, #fcefc2);
  border-radius: var(--bp-radius-lg);
  padding: 2rem;
  min-height: 300px;
  position: relative;
  border: 1px solid var(--bp-border);
}

.lp-split__mock {
  background: #fff;
  border-radius: var(--bp-radius);
  padding: 1.25rem;
  box-shadow: var(--bp-shadow);
  max-width: 90%;
}

.lp-split__mock h4 {
  margin: 0 0 0.5rem;
  font-size: 14px;
  color: #9a7209;
}

.lp-split__bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 80px;
  margin-top: 1rem;
}

.lp-split__bar {
  flex: 1;
  background: linear-gradient(180deg, var(--bp-accent-2), var(--bp-accent));
  border-radius: 6px 6px 0 0;
  opacity: 0.92;
}

.lp-split__bar:nth-child(1) {
  height: 40%;
}
.lp-split__bar:nth-child(2) {
  height: 65%;
}
.lp-split__bar:nth-child(3) {
  height: 85%;
}
.lp-split__bar:nth-child(4) {
  height: 55%;
}
.lp-split__bar:nth-child(5) {
  height: 70%;
}

.lp-split__text h2 {
  font-family: var(--bp-serif);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.lp-split__text h2 em {
  font-style: italic;
  color: #9a7209;
  font-weight: 500;
}

.lp-split__text p {
  color: var(--bp-muted);
  margin: 0 0 1.25rem;
}

/* —— Services grid (3-col + CTA) —— */
.lp-grid-services {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .lp-grid-services {
    grid-template-columns: 1fr;
  }
}

.lp-svc-card {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-lg);
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

@media (hover: hover) {
  .lp-svc-card:hover {
    box-shadow: var(--bp-shadow);
  }
}

.lp-svc-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: var(--bp-soft);
  color: #9a7209;
  border: 1px solid rgba(248, 186, 33, 0.35);
}

.lp-svc-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.lp-svc-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  color: var(--bp-muted);
}

.lp-svc-card__arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bp-soft);
  border: none;
  color: #9a7209;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lp-svc-card__arrow:hover {
  background: var(--bp-accent-muted);
}

.lp-svc-cta {
  grid-column: span 1;
  background: linear-gradient(180deg, #0f172a 0%, #3d2f0a 55%, #7a5a0e 100%);
  color: #fff;
  border: none;
  border-radius: var(--bp-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .lp-svc-cta {
    grid-column: 1;
  }
}

.lp-svc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23fff' fill-opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.lp-svc-cta h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.lp-svc-cta p {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.92;
}

.lp-svc-cta .lp-btn {
  position: relative;
  align-self: flex-start;
  background: var(--bp-accent);
  color: var(--bp-on-accent);
  box-shadow: none;
}

.lp-svc-cta .lp-btn:hover {
  filter: brightness(1.06);
  color: var(--bp-on-accent);
}

/* —— Testimonials (dark) —— */
.lp-testimonials {
  background: linear-gradient(180deg, #070b14 0%, #0f172a 50%, #0a1628 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5rem) 1.25rem;
  position: relative;
  overflow: hidden;
}

.lp-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(248, 186, 33, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(248, 186, 33, 0.08), transparent 45%);
  pointer-events: none;
}

.lp-testimonials__head {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.lp-testimonials__head h2 {
  font-family: var(--bp-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0;
  font-weight: 700;
}

.lp-testimonials__head h2 em {
  font-style: italic;
  font-weight: 500;
  opacity: 0.85;
}

.lp-testimonials__nav {
  display: flex;
  gap: 0.5rem;
}

.lp-testimonials__nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.lp-testimonials__nav button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lp-testimonials__track-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.lp-testimonials__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lp-testimonial {
  flex: 0 0 min(100%, 360px);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--bp-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .lp-testimonial {
    flex: 0 0 340px;
  }
}

.lp-testimonial__stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.lp-testimonial p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.lp-testimonial strong {
  display: block;
  font-size: 15px;
}

.lp-testimonial span {
  font-size: 13px;
  opacity: 0.65;
}

/* —— CTA band —— */
.lp-cta-band {
  background: var(--bp-soft);
  padding: 3rem 1.25rem;
  text-align: center;
}

.lp-cta-band__inner {
  max-width: 640px;
  margin: 0 auto;
}

.lp-cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.lp-cta-band p {
  margin: 0 0 1.25rem;
  color: var(--bp-muted);
}

/* —— Footer —— */
.lp-footer {
  background: #050814;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3rem;
}

.lp-footer__newsletter {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lp-footer__newsletter h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.lp-footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.lp-footer__form input {
  min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: inherit;
}

.lp-footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lp-footer__form button.lp-footer__submit-btn,
.lp-footer__form button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--bp-accent);
  /* Dark arrow on gold reads clearly (#f8ba21); switch to #fff if you prefer */
  color: var(--bp-on-accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
  flex-shrink: 0;
  line-height: 0;
}

.lp-footer__form button .lp-footer__submit-icon {
  display: block;
  flex-shrink: 0;
}

.lp-footer__form button i {
  color: inherit;
  font-size: 1rem;
}

.lp-footer__form button:hover {
  transform: scale(1.05);
}

.lp-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .lp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }
}

.lp-footer__brand img {
  height: 36px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.lp-footer__brand p {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.75;
}

.lp-footer__social {
  display: flex;
  gap: 0.5rem;
}

.lp-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.lp-footer__social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.lp-footer h4 {
  margin: 0 0 1rem;
  font-size: 15px;
}

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

.lp-footer ul li {
  margin-bottom: 0.5rem;
}

.lp-footer ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
}

.lp-footer ul a:hover {
  color: #fff;
}

.lp-footer__contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 14px;
}

.lp-footer__contact i {
  color: var(--bp-accent);
  margin-top: 3px;
}

.lp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  text-align: center;
  font-size: 12px;
  opacity: 0.55;
}

.lp-footer__company {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.65;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

/* —— Floating WhatsApp + Live Chat launcher (LiveChat.com wired in chat_script.php) —— */
.lp-float-whatsapp {
  position: fixed;
  z-index: 99998;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-float-whatsapp:hover,
.lp-float-whatsapp:focus-visible {
  color: #fff !important;
  text-decoration: none;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
}

.lp-float-whatsapp i {
  font-size: 28px;
  line-height: 1;
}

.lp-chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 32px rgba(248, 186, 33, 0.45),
    0 4px 16px rgba(10, 22, 40, 0.35);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.lp-chat-fab i {
  color: #fff;
  pointer-events: none;
}

.lp-chat-fab:hover,
.lp-chat-fab:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px rgba(248, 186, 33, 0.5), 0 10px 36px rgba(248, 186, 33, 0.5),
    0 4px 16px rgba(10, 22, 40, 0.35);
}

/* —— How it works (steps) —— */
.lp-steps {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .lp-steps {
    grid-template-columns: 1fr;
  }
}

.lp-step {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-lg);
  padding: 1.5rem 1.35rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (hover: hover) {
  .lp-step:hover {
    border-color: rgba(248, 186, 33, 0.45);
    box-shadow: 0 10px 32px rgba(10, 22, 40, 0.06);
  }
}

.lp-step__num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bp-accent-2);
  margin-bottom: 0.65rem;
}

.lp-step__title {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
}

.lp-step__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--bp-muted);
  line-height: 1.55;
}

/* —— Highlights grid —— */
.lp-highlights {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .lp-highlights {
    grid-template-columns: 1fr;
  }
}

.lp-highlight {
  background: #fff;
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-lg);
  padding: 1.5rem 1.35rem 1.5rem 1.35rem;
}

.lp-highlight__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bp-soft);
  color: #9a7209;
  border: 1px solid rgba(248, 186, 33, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.lp-highlight h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.lp-highlight p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--bp-muted);
  line-height: 1.55;
}

/* —— FAQ accordion —— */
.lp-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-faq__item {
  border: 1px solid var(--bp-border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.lp-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1rem 1.15rem;
  border: none;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bp-text);
  cursor: pointer;
  transition: background 0.2s;
}

.lp-faq__trigger:hover,
.lp-faq__trigger:focus-visible {
  background: var(--bp-soft);
}

.lp-faq__plus {
  flex-shrink: 0;
  font-size: 14px;
  color: #9a7209;
  transition: transform 0.25s ease;
}

.lp-faq__item.is-open .lp-faq__plus {
  transform: rotate(45deg);
}

.lp-faq__panel {
  padding: 0 1.15rem 1.1rem;
  border-top: 1px solid transparent;
}

.lp-faq__item.is-open .lp-faq__panel {
  border-top-color: var(--bp-border);
}

.lp-faq__panel p {
  margin: 0.85rem 0 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--bp-muted);
}

/* Reveal on scroll */
.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes lpFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
