/* ============================================================
   UKBox landing system — landing.css (v1 · 12 Jul 2026)
   Loaded ONLY by hosting.tpl and switch.tpl via a <link> tag.
   Mirrors the homepage token system (homepage.tpl v4) so the
   whole funnel — home → landing → cart — reads as one brand.
   ============================================================ */

/* Page-level adjustments (safe: this file loads on landing pages only) */
body.primary-bg-color { overflow-x: clip; }
.master-breadcrumb { display: none; }
#main-body { padding-top: 0 !important; padding-bottom: 0 !important; }

/* ---- Tokens ------------------------------------------------ */
.lp {
  --dark: #0D1411;
  --dark-2: #121B16;
  --dark-card: #17221C;
  --dark-line: rgba(255,255,255,.11);
  --dark-ink: #EFF4F0;
  --dark-muted: #A3B4AA;
  --accent: #2FBF71;
  --accent-deep: #24A660;
  --accent-ink: #08130D;
  --gold: #F5B840;
  --gold-ink: #6B4E10;
  --day: #F4F6F3;
  --white: #fff;
  --ink: #141D18;
  --soft: #3C4A42;
  --muted: #54615A;
  --line: rgba(20,29,24,.13);
  --forest: #0F3D2E;
  --mist: #EDF3EE;
  --radius: 16px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;

  font-family: var(--body);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
}

.lp * { box-sizing: border-box; }
.lp img, .lp svg { max-width: 100%; }

/* ---- Type --------------------------------------------------- */
.lp h1 {
  font: 700 clamp(2.1rem, 4.6vw, 3.3rem)/1.07 var(--display);
  letter-spacing: -.02em; margin: 0 0 18px; color: #fff;
}
.lp h2 {
  font: 700 clamp(1.55rem, 3vw, 2.15rem)/1.15 var(--display);
  letter-spacing: -.015em; margin: 0; color: var(--forest);
}
.lp h3 { font: 700 19px/1.3 var(--display); margin: 0 0 8px; color: var(--forest); }
.lp .eyebrow {
  font: 600 12px var(--body); letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 14px;
}
.lp p { margin: 0 0 14px; }

/* ---- Layout: full-bleed bands inside the WHMCS container ---- */
.lp-band {
  width: 100vw; position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
}
.lp-wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.lp-sec { padding: clamp(52px, 7.5vw, 92px) 0; }
.lp-sec.tint { background: var(--mist); }
.lp-sec.dark { background: linear-gradient(160deg, var(--dark) 0%, #123024 100%); color: var(--dark-ink); }
.lp-sec.dark h2 { color: #fff; }
.lp-sec.dark p { color: var(--dark-muted); }
.lp-h { max-width: 740px; margin-bottom: clamp(26px, 4vw, 42px); }
.lp-h .lead { color: var(--muted); font-size: 17px; margin-top: 10px; }
.lp-sec.dark .lp-h .lead { color: var(--dark-muted); }

/* ---- Buttons (homepage-matched) ------------------------------ */
.lp .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--forest); color: #F2F7F3 !important;
  padding: 15px 28px; border-radius: 12px;
  font: 600 15.5px var(--body); text-decoration: none;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s, box-shadow .18s, filter .18s, background .18s;
}
.lp .btn:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 12px 28px rgba(15,61,46,.38); }
.lp .btn.on-dark { background: var(--accent); color: var(--accent-ink) !important; }
.lp .btn.on-dark:hover { box-shadow: 0 12px 30px rgba(47,191,113,.45); }
.lp .btn.ghost { background: transparent; color: var(--ink) !important; border: 1.5px solid var(--line); }
.lp .btn.ghost:hover { border-color: var(--forest); background: rgba(15,61,46,.07); box-shadow: 0 10px 22px rgba(15,61,46,.16); }
.lp .btn.ghost.on-dark { color: var(--dark-ink) !important; border-color: var(--dark-line); background: rgba(255,255,255,.05); }
.lp .btn.ghost.on-dark:hover { border-color: var(--accent); box-shadow: none; }
.lp .btn.w100 { width: 100%; }
.lp a:focus-visible, .lp .btn:focus-visible, .lp summary:focus-visible {
  outline: 3px solid rgba(47,191,113,.65); outline-offset: 2px; border-radius: 10px;
}

/* ---- Hero ---------------------------------------------------- */
.lp-hero {
  background:
    radial-gradient(1100px 520px at 84% -12%, rgba(47,191,113,.16), transparent 62%),
    linear-gradient(150deg, #0D1411 0%, #11291F 55%, #0F3D2E 100%);
  color: var(--dark-ink);
  padding: clamp(54px, 8.5vw, 100px) 0 clamp(54px, 8vw, 92px);
  position: relative; overflow: hidden;
}
/* Chevron watermark — echoes the stacked-box logo mark */
.lp-hero::after {
  content: ""; position: absolute; right: -60px; top: 50%;
  width: 520px; height: 560px; transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'%3E%3Cg fill='none' stroke='%232FBF71' stroke-width='7'%3E%3Cpath d='M10 32 50 10l40 22'/%3E%3Cpath d='M10 58 50 80l40-22'/%3E%3Cpath d='M10 84 50 106l40-22'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  opacity: .06; pointer-events: none;
}
.lp-hero .lp-wrap { position: relative; z-index: 1; }
.lp-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 400px; gap: 52px; align-items: center; }
.lp-hero .sub { color: var(--dark-muted); font-size: 17.5px; max-width: 590px; margin-bottom: 24px; }
.lp-hero .sub b { color: var(--dark-ink); font-weight: 600; }

.lp-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.lp-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid var(--dark-line);
  border-radius: 999px; padding: 8px 15px;
  font-size: 13.5px; font-weight: 500; color: var(--dark-ink);
}
.lp-chip svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.lp-hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lp-hero-cta .hint { font-size: 13px; color: var(--dark-muted); }

/* ---- Signature panel: price-hold meter / migration checklist -- */
.lp-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid var(--dark-line); border-radius: 20px;
  padding: 26px 26px 24px; backdrop-filter: blur(6px);
}
.lp-panel .pt { font: 600 12px var(--body); letter-spacing: .14em; text-transform: uppercase; color: var(--dark-muted); margin-bottom: 6px; }
.lp-panel .pv { font: 700 21px/1.25 var(--display); color: #fff; }
.lp-panel .pv .gold { color: var(--gold); }

/* price-hold rail (hosting) */
.lp-rail { position: relative; height: 6px; background: rgba(255,255,255,.14); border-radius: 99px; margin: 56px 6px 8px; }
.lp-rail::before { content: ""; position: absolute; inset: 0; border-radius: 99px; background: linear-gradient(90deg, var(--accent), #57D693); }
.lp-pin { position: absolute; top: -46px; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.lp-pin .pp { font: 700 17px var(--display); color: #fff; display: block; }
.lp-pin .pd { font-size: 11.5px; color: var(--dark-muted); }
.lp-pin::after { content: ""; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--dark); }
.lp-pin.l { left: 4%; } .lp-pin.r { left: 96%; }
.lp-rail-badge {
  position: absolute; left: 50%; top: -15px; transform: translateX(-50%);
  background: var(--dark); border: 1px solid var(--accent); color: var(--accent);
  font: 700 11px var(--body); letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; padding: 5px 12px; white-space: nowrap;
}
.lp-rail-note { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--dark-muted); margin: 14px 6px 0; }
.lp-panel .foot { font-size: 12.5px; color: var(--dark-muted); margin-top: 18px; }
.lp-panel .foot a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* migration checklist (switch) */
.lp-verify { list-style: none; margin: 18px 0 0; padding: 0; }
.lp-verify li {
  position: relative; padding: 0 0 22px 34px;
  font-size: 14.5px; color: var(--dark-ink); line-height: 1.45;
}
.lp-verify li small { display: block; color: var(--dark-muted); font-size: 12.5px; }
.lp-verify li::before {
  content: ""; position: absolute; left: 6px; top: 3px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(47,191,113,.18);
}
.lp-verify li::after {
  content: ""; position: absolute; left: 11px; top: 19px; bottom: -1px; width: 2px;
  background: rgba(255,255,255,.14);
}
.lp-verify li:last-child { padding-bottom: 0; }
.lp-verify li:last-child::after { display: none; }
.lp-verify li.you::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(245,184,64,.18); }
.lp-verify li.you { color: var(--gold); font-weight: 600; }
.lp-verify li.you small { color: rgba(245,184,64,.75); }

/* ---- Plan cards ---------------------------------------------- */
.lp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.lp-plan {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  box-shadow: 0 18px 40px -30px rgba(13,20,17,.35);
  transition: transform .18s, box-shadow .18s;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: 0 26px 54px -30px rgba(13,20,17,.45); }
.lp-plan.featured { border: 2px solid var(--accent); box-shadow: 0 28px 60px -30px rgba(47,191,113,.5); }
.lp-flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--accent); color: var(--accent-ink);
  font: 700 11px var(--body); letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.lp-plan .for { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.lp-price { font: 700 clamp(34px, 3.4vw, 40px)/1 var(--display); color: var(--forest); }
.lp-price small { font: 500 14px var(--body); color: var(--muted); }
.lp-offer {
  display: inline-block; align-self: flex-start;
  background: #FDF3DC; border: 1px solid var(--gold); color: var(--gold-ink);
  font-size: 12.5px; font-weight: 700; border-radius: 999px;
  padding: 5px 13px; margin: 12px 0 16px;
}
.lp-plan ul { list-style: none; padding: 0; margin: 0 0 22px; flex-grow: 1; }
.lp-plan li { padding: 6px 0 6px 27px; position: relative; color: var(--soft); font-size: 14.5px; }
.lp-plan li::before { content: "\2713"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }

/* ---- "Included with every plan" ------------------------------- */
.lp-inc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-inc .it {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.lp-inc .ic {
  flex: 0 0 44px; height: 44px; border-radius: 12px;
  background: rgba(47,191,113,.13); display: grid; place-items: center;
}
.lp-inc .ic svg { width: 21px; height: 21px; stroke: var(--forest); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.lp-inc b { display: block; color: var(--forest); font-size: 15px; margin-bottom: 3px; }
.lp-inc p { color: var(--muted); font-size: 13.8px; line-height: 1.55; margin: 0; }

/* ---- Honesty comparison (dark band) --------------------------- */
.lp-cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 860px; margin-top: 30px; }
.lp-cmp .c { background: var(--dark-card); border: 1px solid var(--dark-line); border-radius: var(--radius); padding: 24px; }
.lp-cmp .c.win { border-color: rgba(47,191,113,.55); }
.lp-cmp .lbl { font: 600 12px var(--body); letter-spacing: .13em; text-transform: uppercase; color: var(--dark-muted); margin-bottom: 10px; }
.lp-cmp .c.win .lbl { color: var(--accent); }
.lp-cmp .fig { font: 700 clamp(26px, 3vw, 34px)/1.1 var(--display); color: #fff; }
.lp-cmp .fig small { font: 500 13px var(--body); color: var(--dark-muted); }
.lp-cmp .note { font-size: 13.5px; color: var(--dark-muted); margin: 10px 0 0; }
.lp-keep { margin-top: 22px; font-size: 15.5px; color: var(--dark-ink); }
.lp-keep b { color: var(--gold); font-family: var(--display); font-size: 19px; }
.lp-clause { font-size: 13px; color: var(--dark-muted); margin-top: 16px; }
.lp-clause a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Tech stack strip ------------------------------------------ */
.lp-stack { text-align: center; }
.lp-stack .lbl { font: 600 11.5px var(--display); letter-spacing: .18em; text-transform: uppercase; color: #8A968F; margin-bottom: 16px; }
.lp-stack-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 26px; }
.lp-stack-row span { font: 600 16px var(--display); color: #9AA6A0; white-space: nowrap; transition: color .18s; }
.lp-stack-row span:hover { color: var(--forest); }
.lp-stack .note { font-size: 11.5px; color: #B0BAB4; margin-top: 14px; }

/* ---- Steps rail (switch) --------------------------------------- */
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.lp-steps::before {
  content: ""; position: absolute; top: 43px; left: 4%; right: 4%;
  height: 2px; background: var(--line);
}
.lp-step { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; position: relative; }
.lp-step .n {
  width: 38px; height: 38px; border-radius: 12px; background: var(--forest); color: #fff;
  display: grid; place-items: center; font: 700 16px var(--display);
  margin-bottom: 14px; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px #fff;
}
.lp-step h3 { font-size: 16.5px; }
.lp-step p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---- What comes with you (switch) ------------------------------- */
.lp-moves { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-moves .c { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 14px; padding: 20px; }
.lp-moves h3 { font-size: 15.5px; margin-bottom: 6px; }
.lp-moves p { color: var(--muted); font-size: 13.8px; line-height: 1.55; margin: 0; }

/* ---- Cross-sell band -------------------------------------------- */
.lp-cross {
  background: var(--forest); border-radius: 24px; padding: 34px 38px;
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: space-between;
}
.lp-cross h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.lp-cross p { color: #CFE0D6; font-size: 14.5px; max-width: 560px; margin: 0; }

/* ---- FAQ --------------------------------------------------------- */
.lp-faq { max-width: 820px; }
.lp-faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.lp-faq summary {
  padding: 18px 22px; font: 600 16px var(--body); color: var(--forest);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary .ch { flex: none; width: 22px; height: 22px; border-radius: 7px; background: var(--mist); display: grid; place-items: center; transition: transform .2s; }
.lp-faq summary .ch svg { width: 12px; height: 12px; stroke: var(--forest); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.lp-faq details[open] summary .ch { transform: rotate(180deg); }
.lp-faq details p { padding: 0 22px 18px; color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.lp-faq details p a { color: var(--forest); font-weight: 600; }

/* ---- Final CTA ---------------------------------------------------- */
.lp-final { text-align: center; }
.lp-final h2 { color: #fff; }
.lp-final p { color: var(--dark-muted); margin: 12px auto 26px; max-width: 560px; }

/* ---- Sticky mobile CTA --------------------------------------------- */
.lp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(13,20,17,.94); backdrop-filter: blur(8px);
  border-top: 1px solid var(--dark-line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .3s ease;
}
.lp-sticky.on { transform: none; }
.lp-sticky span { color: var(--dark-ink); font: 600 13.5px var(--body); }
.lp-sticky .btn { padding: 12px 18px; font-size: 14.5px; }

/* ---- Scroll reveal (JS-gated so no-JS never hides content) --------- */
.lp.js .rv { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.lp.js .rv.in { opacity: 1; transform: none; }

/* ---- Trust bar blending --------------------------------------------- */
.lp-sec .ukbox-trustbar { margin: 0; }
.lp-sec.tint .ukbox-trustbar { background: #fff; }

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 980px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .lp-hero-grid .lp-panel { max-width: 460px; }
  .lp-plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .lp-inc { grid-template-columns: 1fr 1fr; }
  .lp-steps { grid-template-columns: 1fr 1fr; }
  .lp-steps::before { display: none; }
  .lp-moves { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .lp-sticky { display: flex; }
  .lp-hero::after { display: none; }
  .lp-cmp { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .lp { font-size: 16px; }
  .lp-inc { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-moves { grid-template-columns: 1fr; }
  .lp-hero-cta .btn, .lp-final .btn, .lp-cross .btn { width: 100%; }
  .lp-cross { padding: 26px 22px; }
  .lp-pin.l { left: 7%; } .lp-pin.r { left: 93%; }
}

/* ---- Reduced motion --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .lp .btn, .lp-plan, .lp-faq summary .ch, .lp-sticky { transition: none; }
  .lp .btn:hover, .lp-plan:hover { transform: none; }
  .lp.js .rv { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   v1.1 additions (12 Jul 2026) — components for domains, email,
   web design, SEO and business phone pages
   ============================================================ */

/* Domain search (hero) */
.lp-search { display: flex; gap: 10px; max-width: 560px; margin: 0 0 18px; }
.lp-search input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.08);
  border: 1px solid var(--dark-line); border-radius: 12px;
  padding: 15px 18px; font: 500 16px var(--body); color: #fff;
}
.lp-search input::placeholder { color: var(--dark-muted); }
.lp-search input:focus { outline: 3px solid rgba(47,191,113,.55); outline-offset: 1px; }

/* TLD price rows (hero panel) */
.lp-tldrow {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 2px; border-bottom: 1px solid var(--dark-line);
  font-size: 15px; color: var(--dark-ink);
}
.lp-tldrow b { font: 700 18px var(--display); color: #fff; }
.lp-tldrow b small { font: 500 12px var(--body); color: var(--dark-muted); }
.lp-tldrow:last-of-type { border-bottom: 0; }

/* Responsive comparison table */
.lp-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lp-table {
  width: 100%; min-width: 540px; border-collapse: separate; border-spacing: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.lp-table th {
  text-align: left; font: 600 13px var(--body); letter-spacing: .06em; text-transform: uppercase;
  color: var(--forest); background: var(--mist); padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}
.lp-table td { padding: 15px 18px; font-size: 15px; color: var(--soft); border-bottom: 1px solid var(--line); }
.lp-table tr:last-child td { border-bottom: 0; }
.lp-table td.win { background: rgba(47,191,113,.09); color: var(--forest); font-weight: 600; }

/* Light gold plain-print / honesty box */
.lp-gold {
  background: #FDF7E7; border: 1px solid var(--gold); border-radius: 16px;
  padding: 20px 24px; color: #5C4A1E; font-size: 15px; line-height: 1.7;
}
.lp-gold b, .lp-gold a { color: var(--forest); }

/* Audience tags */
.lp-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-tags span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-size: 14px; font-weight: 500; color: var(--soft);
}

/* Portfolio / screenshot frame */
.lp-shot {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px;
  box-shadow: 0 18px 40px -30px rgba(13,20,17,.35); max-width: 940px;
}
.lp-shot img { width: 100%; border-radius: 12px; display: block; }
.lp-shot p { margin: 12px 0 0; color: var(--muted); font-size: 13.5px; text-align: center; }

/* Incoming-call visual (business phone) */
.lp-call { text-align: center; padding: 6px 0 2px; }
.lp-call .avatar {
  width: 62px; height: 62px; border-radius: 50%; margin: 8px auto 12px;
  background: rgba(47,191,113,.16); border: 1px solid rgba(47,191,113,.5);
  display: grid; place-items: center;
}
.lp-call .avatar svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lp-call .who { font: 700 20px var(--display); color: #fff; }
.lp-call .line { font-size: 13px; color: var(--dark-muted); margin: 4px 0 18px; }
.lp-call .acts { display: flex; gap: 12px; justify-content: center; }
.lp-call .acts span {
  border-radius: 999px; padding: 10px 24px; font: 600 14px var(--body);
}
.lp-call .acts .ans { background: var(--accent); color: var(--accent-ink); }
.lp-call .acts .dec { background: rgba(255,255,255,.09); color: var(--dark-muted); border: 1px solid var(--dark-line); }

/* Grid variants */
.lp-plans.g2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
.lp-steps.s3 { grid-template-columns: repeat(3, 1fr); }
.lp-plan .mo { font: 600 17px var(--display); color: var(--ink); margin-top: 6px; }
.lp-plan .vat { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

@media (max-width: 980px) {
  .lp-plans.g2 { grid-template-columns: 1fr; }
  .lp-steps.s3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .lp-search { flex-direction: column; }
  .lp-search .btn { width: 100%; }
  .lp-steps.s3 { grid-template-columns: 1fr; }
}

/* ============================================================
   v1.2 additions (12 Jul 2026) — components for about, FAQ,
   transfers, nameservers and acquisitions pages
   ============================================================ */

/* Stat band (about) */
.lp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lp-stats .st {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; text-align: center;
}
.lp-stats .n { font: 700 clamp(28px, 3.2vw, 38px)/1 var(--display); color: var(--forest); }
.lp-stats .l { font-size: 13.5px; color: var(--muted); margin-top: 8px; line-height: 1.45; }

/* Reference value boxes (nameservers / IPS tag) */
.lp-ref {
  background: var(--mist); border: 1.5px dashed var(--forest); border-radius: 12px;
  padding: 14px 18px; margin: 14px 0;
}
.lp-ref .lbl {
  font: 600 11px var(--body); letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.lp-ref code {
  display: block; font: 700 19px/1.5 ui-monospace, Menlo, Consolas, monospace;
  color: var(--forest); letter-spacing: .03em; background: none; padding: 0; border: 0;
}
.lp-ref.on-dark { background: rgba(255,255,255,.06); border-color: var(--accent); }
.lp-ref.on-dark .lbl { color: var(--dark-muted); }
.lp-ref.on-dark code { color: #fff; }

/* Ordered lists inside cards */
.lp-plan ol { padding-left: 20px; margin: 0 0 16px; flex-grow: 1; }
.lp-plan ol li { padding: 5px 0; color: var(--soft); font-size: 14.5px; line-height: 1.55; }
.lp-plan ol li::before { content: none; }
.lp-plan ol li b, .lp-plan ol li strong { color: var(--forest); }

/* Prose blocks on light sections */
.lp-prose { max-width: 780px; }
.lp-prose p { color: var(--soft); font-size: 16.5px; line-height: 1.75; }
.lp-prose p b, .lp-prose p strong { color: var(--forest); }

@media (max-width: 980px) { .lp-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-stats { grid-template-columns: 1fr 1fr; gap: 12px; } .lp-stats .st { padding: 18px 12px; } }
