/* ==========================================================================
   /webadvert — advert landing page
   Self-contained: paid traffic loads this and nothing else, so there is no
   dependency on the main site stylesheet.
   ========================================================================== */

:root {
  --ink:      #0b1f2e;
  --ink-2:    #40596b;
  --ink-3:    #7a919f;
  --line:     rgba(11, 31, 46, .09);
  --paper:    #f5f9fb;
  --card:     #ffffff;
  --brand:    #0475B6;
  --brand-d:  #03608f;
  --teal:     #1aae8f;
  --amber:    #e69500;
  --grad:     linear-gradient(135deg, #0475B6 0%, #058da5 52%, #1aae8f 100%);
  --f-d:      'Clash Display', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-b:      'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease:     cubic-bezier(.16, 1, .3, 1);
  --spring:   cubic-bezier(.34, 1.56, .64, 1);
  --e-1: 0 1px 2px rgba(11,31,46,.05), 0 2px 6px rgba(11,31,46,.05);
  --e-2: 0 2px 4px rgba(11,31,46,.05), 0 8px 20px rgba(11,31,46,.07);
  --e-3: 0 4px 8px rgba(11,31,46,.06), 0 18px 40px rgba(11,31,46,.1);
  --e-4: 0 8px 16px rgba(11,31,46,.07), 0 32px 64px rgba(11,31,46,.14);
  --pad:  clamp(18px, 5vw, 32px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-b);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.lp-in { max-width: 1180px; margin: 0 auto; padding-inline: var(--pad); }
.lp-in.narrow { max-width: 820px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px var(--pad);
  background: rgba(245, 249, 251, .88);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--line);
}

.lp-logo img { height: 62px; width: auto; }

.lp-nav-cta {
  padding: 9px 18px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(4, 117, 182, .28);
  transition: transform .18s var(--spring), box-shadow .3s var(--ease);
}
.lp-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(4, 117, 182, .36); }
.lp-client-notification { position: relative; display: inline-flex; align-items: center; justify-content: center; flex: none; width: 38px; height: 38px; border: 1px solid rgba(4, 117, 182, .22); border-radius: 10px; background: #fff; color: var(--brand-d); transition: .2s ease; }
.lp-client-notification:hover { border-color: var(--brand); background: rgba(4, 117, 182, .06); }
.lp-client-notification svg { width: 18px; height: 18px; }
.lp-client-notification b { position: absolute; top: -6px; right: -7px; display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 4px; border: 2px solid var(--paper); border-radius: 999px; background: #d7394b; color: #fff; font-size: 9px; line-height: 1; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  padding: clamp(52px, 9vh, 96px) 0 clamp(48px, 8vh, 84px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%,  rgba(4, 117, 182, .13), transparent 62%),
    radial-gradient(ellipse 65% 55% at 88% 12%, rgba(26, 174, 143, .12), transparent 64%);
  overflow: hidden;
}

.lp-eyebrow {
  display: inline-block;
  padding: 7px 15px;
  margin-bottom: 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--brand);
  background: linear-gradient(135deg, rgba(4, 117, 182, .12), rgba(26, 174, 143, .09));
  border: 1px solid rgba(4, 117, 182, .18);
}
.lp-eyebrow.dark { color: var(--brand-d); }

.lp-hero h1 {
  font-family: var(--f-d);
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.04em;
  max-width: 17ch;
  margin: 0 auto 18px;
}

.lp-sub {
  font-size: clamp(1rem, .94rem + .38vw, 1.2rem);
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0 auto 30px;
}

.lp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-cta-row.center { justify-content: center; }

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 13px;
  font-family: var(--f-b);
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s var(--spring), box-shadow .3s var(--ease), background .2s ease;
}

.lp-btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(4, 117, 182, .26), 0 2px 6px rgba(4, 117, 182, .18);
}
.lp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(4, 117, 182, .34); }

.lp-btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--e-1);
}
.lp-btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--e-2); }

.lp-btn:active { transform: translateY(1px) scale(.985); }

/* Trust strip */
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.lp-trust-i { text-align: center; }
.lp-trust-i .n {
  display: block;
  font-family: var(--f-d);
  font-size: clamp(1.05rem, .9rem + .7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-trust-i .l {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.lp-sec { padding: clamp(52px, 9vh, 92px) 0; }
.lp-sec.alt { background: #fff; border-block: 1px solid var(--line); }

.lp-head { text-align: center; margin-bottom: clamp(32px, 5vh, 52px); }
.lp-head h2 {
  font-family: var(--f-d);
  font-size: clamp(1.6rem, 1.15rem + 2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.lp-head p { color: var(--ink-2); max-width: 60ch; margin: 0 auto; font-size: 15px; }

/* --------------------------------------------------------------------------
   Package cards
   -------------------------------------------------------------------------- */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 20px;
  align-items: stretch;
}

.lp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--e-2);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lp-card:hover { transform: translateY(-5px); box-shadow: var(--e-4); }

/* The recommended tier gets a brand frame so the eye lands on it */
.lp-card.is-featured {
  border-color: rgba(4, 117, 182, .3);
  box-shadow: var(--e-3), 0 0 0 3px rgba(4, 117, 182, .1);
}

.lp-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 15px;
  border-radius: 100px;
  background: var(--grad);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(4, 117, 182, .32);
}

.lp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-card h3 {
  font-family: var(--f-d);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.lp-card-choice {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 9px;
  background: rgba(4, 117, 182, .09);
  border: 1px solid rgba(4, 117, 182, .2);
  color: var(--brand-d);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s var(--spring), background .2s ease, box-shadow .2s ease;
}
.lp-card-choice:hover { transform: translateY(-2px); background: rgba(4, 117, 182, .15); box-shadow: 0 6px 16px rgba(4, 117, 182, .12); }
.lp-card.is-featured .lp-card-choice { background: var(--grad); border-color: transparent; color: #fff; }

.lp-card-tag { font-size: 13.5px; color: var(--ink-2); margin: 5px 0 16px; min-height: 42px; }

.lp-price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.lp-price .pre { font-size: 12px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .8px; }
.lp-price .val {
  font-family: var(--f-d);
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.lp-facts {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.lp-facts span {
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: rgba(4, 117, 182, .07);
  border: 1px solid rgba(4, 117, 182, .13);
}

.lp-bestfor { font-size: 12.5px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.5; }
.lp-bestfor strong { color: var(--ink); font-weight: 600; }

.lp-feats { list-style: none; display: grid; gap: 9px; margin-bottom: 22px; }

.lp-feats li {
  position: relative;
  padding-left: 25px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* Tick drawn in CSS so there is no icon font to load */
.lp-feats li::before {
  content: '';
  position: absolute;
  left: 3px; top: 6px;
  width: 6px; height: 10px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lp-feats li.no { color: var(--ink-3); }
.lp-feats li.no::before {
  top: 8px; left: 2px;
  width: 10px; height: 2px;
  border: none;
  background: rgba(11, 31, 46, .22);
  transform: none;
}

/* --------------------------------------------------------------------------
   Add-ons
   -------------------------------------------------------------------------- */
.lp-addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 12px;
}

.lp-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.lp-addon:hover { transform: translateY(-2px); box-shadow: var(--e-1); }

.lp-addon-n { font-size: 14px; font-weight: 500; }
.lp-addon-p {
  font-family: var(--f-d);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--brand);
  text-align: right;
  white-space: nowrap;
}
.lp-addon-p small {
  display: block;
  font-family: var(--f-b);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 16px;
}

.lp-step {
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--e-1);
}

.lp-step-n {
  display: block;
  font-family: var(--f-d);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-step h4 { font-family: var(--f-d); font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 6px; }
.lp-step p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* --------------------------------------------------------------------------
   FAQs — native <details>, no JS needed
   -------------------------------------------------------------------------- */
.lp-faqs { display: grid; gap: 10px; }

.lp-faq {
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.lp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background .18s ease;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary:hover { background: rgba(4, 117, 182, .04); }

.lp-faq summary svg {
  width: 18px; height: 18px;
  flex: none;
  color: var(--brand);
  transition: transform .28s var(--ease);
}
.lp-faq[open] summary svg { transform: rotate(180deg); }

.lp-faq p { padding: 0 20px 18px; font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* --------------------------------------------------------------------------
   Final CTA + footer
   -------------------------------------------------------------------------- */
.lp-final {
  padding: clamp(56px, 10vh, 100px) 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 90% at 20% 0%, rgba(26, 174, 143, .28), transparent 60%),
    radial-gradient(ellipse 70% 90% at 85% 100%, rgba(4, 117, 182, .36), transparent 62%),
    #0b1f2e;
}

.lp-final h2 {
  font-family: var(--f-d);
  font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}
.lp-final p { color: rgba(255, 255, 255, .78); max-width: 56ch; margin: 0 auto 28px; }

.lp-final .lp-btn-ghost {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
  box-shadow: none;
}
.lp-final .lp-btn-ghost:hover { background: rgba(255, 255, 255, .2); }

.lp-mail { margin-top: 22px; font-size: 14px; color: rgba(255, 255, 255, .6); }
.lp-mail a { color: #7fd4ff; text-decoration: underline; text-underline-offset: 3px; }

.lp-foot {
  padding: 30px 0 calc(30px + env(safe-area-inset-bottom));
  text-align: center;
  background: #071722;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}
.lp-foot .small { font-size: 12px; margin-top: 5px; color: rgba(255, 255, 255, .38); }
.lp-foot a { color: rgba(255, 255, 255, .7); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Mobile: two packages per row, and a hero compact enough that the pricing
   is already on screen when an advert click lands.
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .lp-logo img { height: 46px; }
  .lp-nav { padding-block: 7px; }

  /* Hero: trimmed hard so the packages clear the fold */
  .lp-hero { padding: 20px 0 22px; }
  .lp-eyebrow { margin-bottom: 12px; padding: 5px 12px; font-size: 10px; letter-spacing: 1.6px; }
  .lp-hero h1 { font-size: clamp(1.5rem, 1.1rem + 2.6vw, 2rem); max-width: 20ch; margin-bottom: 10px; }
  .lp-sub { font-size: 13.5px; margin-bottom: 18px; max-width: 46ch; }

  /* Side by side rather than stacked full-width: saves ~60px of height */
  .lp-cta-row { gap: 9px; }
  .lp-cta-row .lp-btn { flex: 1 1 0; min-width: 0; padding: 12px 14px; font-size: 14px; }

  .lp-trust { margin-top: 22px; padding-top: 16px; gap: 16px 22px; }
  .lp-trust-i .n { font-size: 15px; }
  .lp-trust-i .l { font-size: 9px; letter-spacing: .7px; }

  .lp-sec { padding: 34px 0; }
  .lp-head { margin-bottom: 20px; }
  .lp-head h2 { font-size: clamp(1.3rem, 1.05rem + 1.4vw, 1.7rem); }
  .lp-head p { font-size: 13px; }

  /* ── Two per row ── */
  .lp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .lp-card { padding: 18px 13px 14px; border-radius: 15px; }
  .lp-card h3 { font-size: 16px; }
  .lp-card-choice { min-height: 30px; padding: 6px 8px; font-size: 9.5px; border-radius: 8px; }
  .lp-card-tag { display: none; }              /* the feature list says it better */
  .lp-price { margin-bottom: 10px; gap: 4px; }
  .lp-price .pre { font-size: 9.5px; letter-spacing: .5px; }
  .lp-price .val { font-size: clamp(1.15rem, .95rem + 1.1vw, 1.5rem); }

  .lp-facts { gap: 5px; padding-bottom: 10px; margin-bottom: 10px; }
  .lp-facts span { padding: 3px 8px; font-size: 10px; }

  .lp-bestfor { font-size: 11px; margin-bottom: 11px; }

  .lp-feats { gap: 6px; margin-bottom: 14px; }
  .lp-feats li { padding-left: 17px; font-size: 11.5px; line-height: 1.4; }
  .lp-feats li::before { left: 1px; top: 4px; width: 4px; height: 7px; border-width: 0 2px 2px 0; }
  .lp-feats li.no::before { top: 6px; width: 7px; height: 2px; }

  .lp-badge { font-size: 9px; padding: 4px 10px; letter-spacing: .6px; top: -9px; }

  .lp-addon { padding: 13px 14px; }
  .lp-steps { gap: 10px; }
  .lp-step { padding: 18px 16px; }
}

/* Very small phones: keep two columns but tighten further */
@media (max-width: 420px) {
  .lp-hero { padding: 16px 0 18px; }
  .lp-hero h1 { font-size: 1.42rem; line-height: 1.1; }
  .lp-sub { display: none; }                   /* headline carries the message */
  .lp-trust { margin-top: 16px; padding-top: 13px; gap: 12px 16px; }
  .lp-grid { gap: 8px; }
  .lp-card { padding: 16px 11px 13px; }
  .lp-card h3 { font-size: 15px; }
  .lp-feats li { font-size: 11px; }
  .lp-btn { padding: 12px 14px; font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .lp-nav, .lp-final .lp-cta-row { display: none !important; }
  body { background: #fff; }
}

/* --------------------------------------------------------------------------
   Collapsible package details
   The wrapper animates from grid-template-rows 0fr to 1fr, which gives a real
   height transition without measuring the content in JavaScript.
   -------------------------------------------------------------------------- */
.lp-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 2px 0 12px;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  font-family: var(--f-b);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.lp-toggle:hover { background: rgba(4, 117, 182, .06); color: var(--brand-d); border-color: rgba(4, 117, 182, .2); }
.lp-toggle svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.lp-card.is-open .lp-toggle svg { transform: rotate(180deg); }
.lp-card.is-open .lp-toggle { background: rgba(4, 117, 182, .07); color: var(--brand-d); border-color: rgba(4, 117, 182, .18); }

.lp-more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s var(--ease);
}
.lp-card.is-open .lp-more { grid-template-rows: 1fr; }

.lp-more-in { overflow: hidden; min-height: 0; }

/* Fade the contents in slightly behind the height change so it does not
   look like the text is being squashed out of the box. */
.lp-more-in > * { opacity: 0; transition: opacity .3s ease .06s; }
.lp-card.is-open .lp-more-in > * { opacity: 1; }

.lp-more .lp-feats { margin-bottom: 14px; }

@media (prefers-reduced-motion: reduce) {
  .lp-more { transition: none; }
  .lp-more-in > * { transition: none; }
}

/* --------------------------------------------------------------------------
   Tighter section heading on mobile, so the cards clear the fold
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  #packages { padding-top: 18px; }
  #packages .lp-eyebrow { display: none; }
  #packages .lp-head { margin-bottom: 14px; }
  #packages .lp-head h2 { font-size: 1.22rem; margin-bottom: 5px; }
  #packages .lp-head p { font-size: 11.5px; line-height: 1.45; max-width: 40ch; }

  .lp-toggle { margin: 0 0 9px; padding: 8px 8px; font-size: 11.5px; border-radius: 8px; }
  .lp-toggle svg { width: 12px; height: 12px; }
  .lp-more .lp-feats { margin-bottom: 11px; }
}

@media (max-width: 420px) {
  #packages { padding-top: 14px; }
  #packages .lp-head h2 { font-size: 1.12rem; }
  #packages .lp-head p { font-size: 10.5px; }
  .lp-toggle { font-size: 11px; padding: 7px 6px; }
}

/* --------------------------------------------------------------------------
   Other services — everything that is quoted rather than packaged
   -------------------------------------------------------------------------- */
.lp-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 10px;
}

.lp-svc {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.lp-svc:hover { transform: translateY(-2px); box-shadow: var(--e-1); border-color: rgba(4, 117, 182, .2); }

.lp-svc-ic {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(4, 117, 182, .1), rgba(26, 174, 143, .08));
  box-shadow: inset 0 0 0 1px rgba(4, 117, 182, .1);
}

.lp-svc-b { flex: 1; min-width: 0; }
.lp-svc-b h4 {
  font-family: var(--f-d);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.lp-svc-b p { font-size: 12px; color: var(--ink-2); line-height: 1.45; margin-top: 2px; }

.lp-svc-q {
  flex: none;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--brand-d);
  background: rgba(4, 117, 182, .09);
  border: 1px solid rgba(4, 117, 182, .18);
}

.lp-svc-cta { display: flex; justify-content: center; margin-top: 26px; }

@media (max-width: 760px) {
  .lp-svc-grid { grid-template-columns: 1fr; gap: 8px; }
  .lp-svc { padding: 12px 13px; gap: 11px; }
  .lp-svc-ic { width: 34px; height: 34px; font-size: 16px; border-radius: 10px; }
  .lp-svc-b h4 { font-size: 13.5px; }
  .lp-svc-b p { font-size: 11.5px; }
  .lp-svc-q { font-size: 9px; padding: 3px 8px; }
  .lp-svc-cta { margin-top: 18px; }
  .lp-svc-cta .lp-btn { width: 100%; }
}

/* Lucide icons on the landing page */
.ico { display: block; flex: none; stroke: currentColor; }
.lp-svc-ic { color: var(--brand); font-size: 0; }
.ico-fallback { font-size: 17px; line-height: 1; }

/* --------------------------------------------------------------------------
   Header title beside the logo
   -------------------------------------------------------------------------- */
.lp-nav-title {
  flex: 1;
  min-width: 0;
  font-family: var(--f-d);
  font-size: clamp(.82rem, .7rem + .5vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 4px;
}

/* --------------------------------------------------------------------------
   Subtle depth for the landing page
   All of this is painted with gradients and one static shadow each, so there
   is nothing here that forces a repaint on scroll.
   -------------------------------------------------------------------------- */
.lp-hero::before,
.lp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.lp-hero::before {
  width: 520px; height: 520px;
  top: -230px; left: -140px;
  background: radial-gradient(circle, rgba(4, 117, 182, .16), transparent 68%);
}
.lp-hero::after {
  width: 460px; height: 460px;
  bottom: -220px; right: -120px;
  background: radial-gradient(circle, rgba(26, 174, 143, .15), transparent 68%);
}
.lp-hero > .lp-in { position: relative; z-index: 1; }

/* Hairline grid, drawn once as a gradient rather than an image */
.lp-sec.alt {
  position: relative;
  background-image:
    linear-gradient(rgba(11, 31, 46, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 46, .028) 1px, transparent 1px);
  background-size: 46px 46px;
  background-position: center;
}

/* A soft lit edge along the top of each pale band */
.lp-sec.alt::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(4, 117, 182, .05), transparent);
  pointer-events: none;
}
.lp-sec.alt > .lp-in { position: relative; z-index: 1; }

/* Featured card gets a gradient wash so the eye lands on it */
.lp-card.is-featured {
  background:
    linear-gradient(165deg, rgba(4, 117, 182, .05), rgba(255, 255, 255, 0) 42%),
    var(--card);
}

.lp-card { will-change: auto; }

/* --------------------------------------------------------------------------
   Mobile: details open as a full-screen sheet
   The 2-up grid stays; tapping Details lifts that card out to fill the screen,
   and Close, Escape or the hardware back button returns to the grid.
   -------------------------------------------------------------------------- */
.lp-sheet-bar { display: none; }

@media (max-width: 760px) {
  /* Keep two columns */
  .lp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  body.sheet-open { overflow: hidden; }

  .lp-card.is-open {
    position: fixed;
    inset: 0;
    z-index: 200;
    width: auto;
    margin: 0;
    border-radius: 0;
    padding: 0 16px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--card);
    box-shadow: none;
    animation: sheetIn .3s cubic-bezier(.16, 1, .3, 1);
  }

  @keyframes sheetIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to   { opacity: 1; transform: none; }
  }

  /* Sticky title bar with the close control */
  .lp-card.is-open .lp-sheet-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 3;
    margin: 0 -16px 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }

  .lp-sheet-name {
    font-family: var(--f-d);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.02em;
  }

  .lp-sheet-x {
    flex: none;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink-2);
    cursor: pointer;
  }
  .lp-sheet-x svg { width: 17px; height: 17px; }
  .lp-sheet-x:active { transform: scale(.94); }

  /* Full-size type once the card owns the screen */
  .lp-card.is-open h3 { font-size: 24px; padding-top: 4px; }
  .lp-card.is-open .lp-card-tag { display: block; font-size: 14px; margin: 6px 0 14px; }
  .lp-card.is-open .lp-price .val { font-size: 2rem; }
  .lp-card.is-open .lp-facts span { font-size: 12px; padding: 5px 12px; }
  .lp-card.is-open .lp-bestfor { font-size: 13.5px; margin-bottom: 16px; }
  .lp-card.is-open .lp-feats { gap: 10px; margin-bottom: 20px; }
  .lp-card.is-open .lp-feats li { font-size: 14px; padding-left: 24px; line-height: 1.5; }
  .lp-card.is-open .lp-feats li::before { left: 3px; top: 6px; width: 6px; height: 10px; }
  .lp-card.is-open .lp-feats li.no::before { top: 8px; width: 10px; height: 2px; }
  .lp-card.is-open .lp-badge { display: none; }

  /* A sheet has its own scroll area, so render details as normal block
     content instead of a 1fr grid row. This keeps long E-Commerce and
     Custom Platform feature lists from collapsing to an empty area. */
  .lp-card.is-open .lp-more { display: block; overflow: visible; }
  .lp-card.is-open .lp-more-in { overflow: visible; }

  .lp-card.is-open .lp-toggle { display: none; }

}

@media (prefers-reduced-motion: reduce) {
  .lp-card.is-open { animation: none; }
}

/* Performance: glass only where it sits over something, not on every card.
   See the note in enhance.css section 19. */
.lp-card, .lp-addon, .lp-step, .lp-svc, .lp-faq, .lp-svc-grid > * {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* A card becomes a viewport-fixed sheet on mobile. Containment would make
   that fixed sheet position itself against the package grid instead, leaving
   the contents above the visible screen for packages farther down the page. */
.lp-card { contain: none; }
.lp-svc, .lp-step { contain: layout style paint; }
.lp-sec { content-visibility: auto; contain-intrinsic-size: auto 600px; }
.lp-card:hover { will-change: transform; }

/* --------------------------------------------------------------------------
   Phone refinement
   A paid advert should be easy to scan with one thumb.  Phones therefore use
   a single, full-width package card rather than a cramped two-column price
   table.  Service rows also gain a deliberate second line for their label.
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  :root { --pad: 18px; }

  .lp-nav {
    gap: 10px;
    padding-block: 9px;
    box-shadow: 0 6px 18px rgba(11, 31, 46, .045);
  }
  .lp-logo img { height: 42px; }
  .lp-nav-title {
    font-size: .72rem;
    line-height: 1.15;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .lp-hero { padding: 23px 0 21px; }
  .lp-hero h1 { font-size: clamp(1.82rem, 8.2vw, 2.2rem); line-height: 1.06; max-width: 16ch; margin-bottom: 8px; }
  .lp-sub {
    display: -webkit-box;
    max-width: 39ch;
    margin-bottom: 14px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .lp-cta-row { gap: 10px; }
  .lp-cta-row .lp-btn { min-height: 44px; padding: 11px 12px; }

  #packages { padding-top: 18px; }
  #packages .lp-head { margin-bottom: 14px; }
  #packages .lp-head h2 { font-size: 1.5rem; }
  #packages .lp-head p { font-size: 12.5px; }
  .lp-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .lp-card { padding: 23px 20px 18px; border-radius: 18px; }
  .lp-card h3 { font-size: 20px; }
  .lp-card-choice { min-height: 36px; padding: 9px 11px; font-size: 11px; }
  .lp-card-tag { display: block; min-height: 0; font-size: 13px; margin: 5px 0 15px; }
  .lp-price { margin-bottom: 13px; }
  .lp-price .pre { font-size: 10px; }
  .lp-price .val { font-size: 1.8rem; }
  .lp-facts { gap: 7px; padding-bottom: 13px; margin-bottom: 13px; }
  .lp-facts span { font-size: 10.5px; padding: 4px 10px; }
  .lp-toggle { margin-bottom: 12px; padding: 10px 12px; font-size: 12px; }
  .lp-svc {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: start;
    gap: 10px 11px;
    padding: 15px;
    border-radius: 16px;
  }
  .lp-svc-ic { width: 36px; height: 36px; }
  .lp-svc-q { grid-column: 2; justify-self: start; align-self: auto; }
  .lp-svc-b h4 { font-size: 14px; }
  .lp-svc-b p { font-size: 12px; }
  .lp-svc-cta .lp-btn { min-height: 50px; }

  .lp-steps { grid-template-columns: 1fr; gap: 11px; }
  .lp-step { padding: 20px 18px; border-radius: 16px; }
  .lp-final { padding: 52px 0; }
  .lp-final .lp-cta-row { flex-direction: column; }
  .lp-final .lp-btn { width: 100%; }
  .lp-foot { padding: 24px 0 calc(26px + env(safe-area-inset-bottom)); }
}

/* The featured badge sits above its card and must not be clipped on a phone. */
.lp-card.is-featured .lp-badge { z-index: 2; }

@media (max-width: 760px) {
  /* content-visibility creates a fixed-position containing block.  Release
     the package section only while its detail sheet is open so the sheet is
     genuinely pinned to the phone viewport. */
  body.sheet-open .lp-sec {
    content-visibility: visible;
    contain: none;
  }

  /* Keep the close control on screen while a package is open as a sheet. */
  .lp-card.is-open { padding-top: 68px; }
  .lp-card.is-open .lp-sheet-bar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 210;
    min-height: 58px;
    margin: 0;
    padding: 12px 16px;
  }
}
