/* =====================================================
   LanderBolt — original-style replica
   Mirrors the Wayback design: navy→sky gradient hero,
   Raleway type, sky-blue + green Elementor palette,
   white cards on a light gray body.
   ===================================================== */

/* ---------- Tokens (lifted from original Elementor globals) ---------- */
:root {
  --bg:           #f3f3f3;        /* body bg from original `body.custom-background` */
  --surface:      #ffffff;
  --surface-2:    #fafbfc;

  /* Text */
  --fg:           #333c44;        /* secondary / dark heading from original */
  --fg-soft:      #54595f;
  --fg-dim:       #7a7a7a;        /* body text from original */
  --fg-mute:      #b5b5b5;

  /* Brand */
  --blue:         #6ec1e4;        /* Elementor primary */
  --blue-deep:    #009ee2;        /* secondary blue used in content */
  --blue-darker:  #0b4182;        /* deep navy used in hero gradient start */
  --blue-sky:     #40baf5;        /* hero gradient end */
  --green:        #61ce70;        /* Elementor accent — CTA buttons */
  --green-deep:   #33c37e;        /* darker hover */

  --border:       #e6e8ec;
  --border-strong:#d2d6dc;

  --shadow-xs:    0 1px 2px rgba(15,23,42,.05), 0 0 0 1px rgba(15,23,42,.04);
  --shadow-sm:    0 6px 18px -8px rgba(15,23,42,.12), 0 0 0 1px rgba(15,23,42,.04);
  --shadow:       0 14px 40px -18px rgba(15,23,42,.2), 0 0 0 1px rgba(15,23,42,.04);

  --radius:       8px;
  --radius-lg:    12px;

  --section-y:    clamp(60px, 7vw, 100px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Raleway', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-dim);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue-deep); text-decoration: none; }
a:hover { color: var(--blue-darker); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  color: var(--fg);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Container ---------- */
.container { width: min(1140px, 92vw); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 0;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color .15s ease, transform .12s ease, box-shadow .2s ease;
}
.btn--primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.btn--primary:hover {
  background: var(--green-deep);
  color: #ffffff;
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  background: var(--blue-darker);
  background: linear-gradient(50deg, #0b4182 0%, #0b4182 35%, #1f6dbf 100%);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 4px rgba(0,0,0,.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  height: 32px;
  width: auto;
  /* Original asset is white-on-transparent — perfect on the dark header */
}
.site-nav {
  display: flex;
  gap: 22px;
}
.site-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 4px;
  transition: background-color .15s ease, color .15s ease;
}
.site-nav a:hover { background: rgba(255,255,255,.15); color: #ffffff; }

/* ---------- HERO ---------- */
.hero {
  /* Lifted from original: linear-gradient(50deg, #0b4182 19%, #40baf5 100%) */
  background: linear-gradient(50deg, #0b4182 19%, #40baf5 100%);
  color: #ffffff;
  padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.hero__eyebrow {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  opacity: .85;
}
.hero__title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 36ch;
}
.hero__cta { margin-top: 24px; }
.hero__art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
}

/* ---------- Pricing ---------- */
.pricing {
  margin-top: calc(var(--section-y) * -0.5);
  position: relative;
  z-index: 2;
  padding-bottom: var(--section-y);
}
.price-card {
  max-width: 460px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: 0 30px 60px -20px rgba(11,65,130,.4), 0 0 0 1px rgba(15,23,42,.04);
  text-align: center;
}
.price-card__name {
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--fg);
  font-weight: 700;
  margin-bottom: 18px;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
  color: var(--fg);
}
.price-card__symbol {
  font-size: 28px;
  font-weight: 500;
  color: var(--fg-soft);
}
.price-card__amount {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-deep);
  letter-spacing: -0.04em;
}
.price-card__period {
  font-size: 14px;
  color: var(--fg-dim);
  margin-left: 6px;
}
.price-card__then {
  font-size: 15px;
  color: var(--fg-dim);
  margin-bottom: 22px;
}
.price-card__then strong { color: var(--fg); font-weight: 700; }
.price-card__list {
  text-align: left;
  margin: 18px 0 26px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.price-card__list li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 14.5px;
  color: var(--fg-soft);
  border-bottom: 1px dashed var(--border);
}
.price-card__list li:last-child { border-bottom: 0; }
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
}
.price-card__list li::after {
  content: "";
  position: absolute;
  left: 3px; top: 15px;
  width: 8px; height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* ---------- Feature rows (alternating two-column) ---------- */
.feature { padding: var(--section-y) 0; }
.feature--light { background: var(--bg); }
.feature__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.feature__row--reverse > .feature__media { order: 2; }
.feature__row--reverse > .feature__copy { order: 1; }

.feature__media {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
}
.feature__media img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.feature__media--stack {
  position: relative;
}
.feature__media--stack .feature__media-phone {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 26%;
  background: var(--surface);
  border-radius: 8px;
  padding: 5px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.feature__copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.22;
}
.feature__copy h2 small {
  display: inline;
  font-size: 0.7em;
  color: var(--fg-soft);
  font-weight: 500;
}
.feature__copy p {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}
.feature__copy p:last-child { margin-bottom: 0; }
.feature__copy .muted { color: var(--fg-mute); font-size: 14.5px; font-style: italic; }
.feature__copy .eyebrow-text {
  color: var(--blue-deep);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

/* ---------- Integration CTA band ---------- */
.integration-band {
  background: var(--blue-deep);
  color: #ffffff;
  padding: clamp(50px, 6vw, 80px) 0;
  text-align: center;
}
.integration-band__inner > * + * { margin-top: 16px; }
.integration-band h2 {
  color: #ffffff;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 14px;
}
.integration-band .lead {
  color: #ffffff;
  opacity: .92;
  font-size: 17px;
  max-width: 60ch;
  margin-inline: auto;
}
.integration-band .lead--center { font-weight: 600; opacity: 1; margin-top: 24px; margin-bottom: 8px; }
.integration-band .btn { margin-top: 20px; }

/* ---------- Partner band ---------- */
.partner-band {
  background: var(--surface);
  padding: clamp(40px, 5vw, 70px) 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-band h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--fg);
  margin-bottom: 14px;
}
.partner-band__link {
  display: inline-block;
  max-width: 60ch;
  color: var(--blue-deep);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.partner-band__link:hover { color: var(--blue-darker); }

/* ---------- Trusted ---------- */
.trusted { padding: var(--section-y) 0; }
.trusted__title {
  text-align: center;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--fg);
  margin-bottom: clamp(30px, 4vw, 50px);
}
.trusted__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 30px 40px;
  align-items: center;
}
.trusted__cell {
  display: grid;
  place-items: center;
  min-height: 70px;
}
.trusted__cell img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  height: auto;
  filter: grayscale(1);
  opacity: .65;
  transition: filter .2s ease, opacity .2s ease;
}
.trusted__cell img:hover { filter: none; opacity: 1; }

/* ---------- Satisfaction ---------- */
.satisfaction { padding: clamp(40px, 5vw, 70px) 0; }
.satisfaction__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  box-shadow: var(--shadow-sm);
}
.satisfaction__inner img { width: 140px; height: auto; }
.satisfaction__inner p {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ---------- FAQ ---------- */
.faq { padding: var(--section-y) 0; }
.faq__title {
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--fg);
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--blue-deep);
  flex: none;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body {
  padding: 0 22px 22px;
  color: var(--fg-dim);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq__body p + p { margin-top: 12px; }
.faq__body strong { color: var(--fg); }

/* ---------- Testimonial ---------- */
.testimonial { padding: var(--section-y) 0; background: var(--surface); }
.testimonial__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.testimonial__inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--fg);
  margin-bottom: 30px;
  line-height: 1.25;
}
.testimonial__inner img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

/* ---------- Contact ---------- */
.contact { padding: var(--section-y) 0; background: var(--bg); }
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.contact__info h2 {
  color: var(--fg);
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 18px;
}
.contact__email {
  font-size: 18px;
  margin-bottom: 18px;
}
.contact__email a { color: var(--blue-deep); font-weight: 600; }
.contact__info p { margin-bottom: 18px; color: var(--fg-dim); line-height: 1.65; }
.contact__info p a { color: var(--blue-deep); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .15s ease; }
.contact__info p a:hover { border-bottom-color: currentColor; }

.contact__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.contact__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: background-color .15s ease, transform .12s ease;
}
.contact__social a:hover { background: var(--blue-darker); transform: translateY(-1px); color: #ffffff; }
.contact__social svg { width: 18px; height: 18px; }

/* ---------- Demo form ---------- */
.demo-form {
  display: grid;
  gap: 14px;
}
.demo-form__title {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--fg);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.demo-form__lead {
  color: var(--fg-dim);
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.field input,
.field textarea {
  font: inherit;
  font-family: 'Raleway', sans-serif;
  color: var(--fg);
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-mute); }
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(110,193,228,.18);
}
.demo-form__note {
  font-size: 12.5px;
  color: var(--fg-mute);
  text-align: center;
  margin-top: 4px;
}
.demo-form__note strong { color: var(--fg-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--fg);
  color: #d2d6dc;
  padding: 28px 0;
  font-size: 14px;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer__nav a {
  color: #d2d6dc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color .15s ease;
}
.site-footer__nav a:hover { color: #ffffff; }
.site-footer__copy { color: #9ca3af; font-size: 13px; }

/* ---------- Legal pages (terms / privacy) ---------- */
.legal-hero {
  background: linear-gradient(50deg, #0b4182 19%, #40baf5 100%);
  color: #ffffff;
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 5vw, 70px);
  text-align: center;
}
.legal-hero h1 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.legal-hero p {
  color: #ffffff;
  opacity: .9;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.legal {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.legal__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  max-width: 1040px;
  margin-inline: auto;
}
.legal__toc {
  position: sticky;
  top: 80px;                  /* clear the sticky header */
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-xs);
  font-size: 13.5px;
}
.legal__toc h2 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 12px;
  font-weight: 700;
}
.legal__toc ol {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: toc;
  display: grid;
  gap: 8px;
}
.legal__toc li { counter-increment: toc; }
.legal__toc a {
  display: flex;
  gap: 8px;
  color: var(--fg-soft);
  font-weight: 500;
  line-height: 1.4;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.legal__toc a::before {
  content: counter(toc) ".";
  color: var(--fg-mute);
  flex: none;
  font-variant-numeric: tabular-nums;
}
.legal__toc a:hover { color: var(--blue-deep); }

.legal__content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.legal__notice {
  background: #fff8e1;
  border: 1px solid #f7e3a1;
  color: #6b5400;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.legal__notice strong { color: #4a3a00; }

.legal__content h2 {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--fg);
  margin: 36px 0 12px;
  padding-top: 12px;
  scroll-margin-top: 90px;     /* anchor offset for sticky header */
  border-top: 1px solid var(--border);
}
.legal__content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal__content h3 {
  font-size: 16px;
  color: var(--fg);
  margin: 22px 0 8px;
}
.legal__content p,
.legal__content li {
  font-size: 15.5px;
  color: var(--fg-dim);
  line-height: 1.72;
}
.legal__content p + p { margin-top: 12px; }
.legal__content ul,
.legal__content ol {
  margin: 12px 0 12px 22px;
  padding: 0;
}
.legal__content ul li,
.legal__content ol li {
  list-style: disc;
  margin-bottom: 6px;
}
.legal__content ol li { list-style: decimal; }
.legal__content strong { color: var(--fg); font-weight: 700; }
.legal__content a { color: var(--blue-deep); border-bottom: 1px solid transparent; }
.legal__content a:hover { border-bottom-color: currentColor; }
.legal__content .legal__meta {
  display: inline-block;
  background: var(--bg);
  color: var(--fg-soft);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 14.5px;
}
.legal__back::before { content: "←"; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__title { margin-inline: auto; }
  .hero__art { order: -1; max-width: 520px; margin: 0 auto; }
  .feature__row,
  .feature__row--reverse,
  .contact__inner,
  .legal__layout { grid-template-columns: 1fr; }
  .legal__toc { position: static; order: 2; }
  .feature__row--reverse > .feature__media,
  .feature__row--reverse > .feature__copy { order: 0; }
  .trusted__grid { grid-template-columns: repeat(3, 1fr); }
  .satisfaction__inner { grid-template-columns: 1fr; text-align: center; }
  .satisfaction__inner img { margin: 0 auto; }
}
@media (max-width: 560px) {
  .trusted__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .site-header__inner { gap: 12px; }
  .site-nav a { padding: 6px 10px; font-size: 12px; }
  .price-card__amount { font-size: 56px; }
  .feature__media--stack .feature__media-phone {
    position: static;
    width: 50%;
    margin: 0 auto 12px;
  }
  .contact__inner { padding: 22px; }
  .site-footer__inner { flex-direction: column; text-align: center; }
}
