/* ============================================================================
   SpaceIndex — location × service landing pages
   ----------------------------------------------------------------------------
   SPECIFICITY NOTE, and it matters:
   Avada ships `.post-content h1, h1 { color: var(--h1_typography-color) }` and
   sets text-transform / letter-spacing / font-family through the same rules.
   A single `.sxlp h1` (0,1,1) ties with `.post-content h1` (0,1,1) and loses on
   source order, which is why the hero heading rendered dark-on-dark and every
   h2 came out Title Cased. Every rule below that Avada could touch is written
   as `.sxlp.sxlp` (0,2,0) so it wins outright, and headings explicitly reset
   font, transform, spacing and colour rather than inheriting the theme's.
   ========================================================================= */

.sxlp {
  /* brand — taken from the live Avada globals */
  --c-accent:      #f73760;
  --c-accent-dk:   #d81f47;
  --c-accent-soft: rgba(247, 55, 96, .12);
  --c-ink:         #22253d;
  --c-ink-deep:    #14172a;
  --c-slate:       #4f578d;
  --c-muted:       #6f76a0;
  --c-line:        #dfe3f0;
  --c-wash:        #f6f7fb;
  --c-white:       #ffffff;
  --c-wa:          #1eb95a;

  --ff-head: "Kumbh Sans", "Segoe UI", Arial, sans-serif;
  --ff-body: Mulish, "Segoe UI", Arial, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;

  --sh-1: 0 1px 2px rgba(20,23,42,.04), 0 4px 14px rgba(20,23,42,.06);
  --sh-2: 0 2px 6px rgba(20,23,42,.06), 0 14px 38px rgba(20,23,42,.10);
  --sh-3: 0 30px 70px rgba(20,23,42,.20);

  --wrap: 1200px;
  --gut:  clamp(18px, 4vw, 40px);

  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: -.011em;
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sxlp *, .sxlp *::before, .sxlp *::after { box-sizing: border-box; }
.sxlp.sxlp img { max-width: 100%; display: block; border: 0; }

/* --- typography reset: beat Avada, don't inherit it --- */
.sxlp.sxlp h1,
.sxlp.sxlp h2,
.sxlp.sxlp h3,
.sxlp.sxlp h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  color: var(--c-ink);
  text-transform: none;
  font-style: normal;
  letter-spacing: -.028em;
  line-height: 1.14;
  margin: 0 0 .5em;
  text-wrap: balance;
}
.sxlp.sxlp h2 { font-size: clamp(27px, 3.1vw, 40px); }
.sxlp.sxlp h3 { font-size: clamp(18px, 1.7vw, 21px); font-weight: 700; letter-spacing: -.022em; }
.sxlp.sxlp p  { margin: 0 0 1.05em; }
.sxlp.sxlp p:last-child { margin-bottom: 0; }
.sxlp.sxlp a  { color: var(--c-accent); text-decoration: none; }
.sxlp.sxlp ul { margin: 0; padding: 0; list-style: none; }

.sxlp.sxlp :focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- layout --- */
.sxlp__wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gut); }
.sxlp__sec  { padding-block: clamp(58px, 6.4vw, 96px); }
.sxlp__sec--wash { background: var(--c-wash); }

.sxlp__eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-size: 12px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 14px;
}
.sxlp__eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--c-accent);
  border-radius: 2px; flex: none;
}
.sxlp__head { max-width: 760px; margin-bottom: clamp(34px, 4vw, 52px); }
.sxlp__head--mid { margin-inline: auto; text-align: center; }
.sxlp__head--mid .sxlp__eyebrow { justify-content: center; }
.sxlp.sxlp .sxlp__lead {
  font-size: clamp(16px, 1.35vw, 18px);
  color: var(--c-slate);
  line-height: 1.72;
  max-width: 64ch;
}
.sxlp__head--mid .sxlp__lead { margin-inline: auto; }

/* --- buttons --- */
.sxlp__cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sxlp__cta-row--mid { justify-content: center; }

.sxlp.sxlp .sxlp__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 700; font-size: 15px;
  letter-spacing: -.008em; line-height: 1.2; text-align: center;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; text-transform: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.sxlp.sxlp .sxlp__btn:hover { transform: translateY(-2px); }
.sxlp.sxlp .sxlp__btn svg { width: 17px; height: 17px; flex: none; fill: currentColor; }

.sxlp.sxlp .sxlp__btn--primary {
  background: var(--c-accent); color: #fff;
  box-shadow: 0 6px 18px rgba(247,55,96,.30);
}
.sxlp.sxlp .sxlp__btn--primary:hover {
  background: var(--c-accent-dk); color: #fff;
  box-shadow: 0 12px 28px rgba(247,55,96,.40);
}
.sxlp.sxlp .sxlp__btn--wa {
  background: var(--c-wa); color: #fff;
  box-shadow: 0 6px 18px rgba(30,185,90,.28);
}
.sxlp.sxlp .sxlp__btn--wa:hover { background: #179c4b; color: #fff; }
.sxlp.sxlp .sxlp__btn--ghost {
  background: transparent; color: var(--c-ink); border-color: var(--c-line);
}
.sxlp.sxlp .sxlp__btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.sxlp.sxlp .sxlp__btn--light { background: #fff; color: var(--c-ink); }
.sxlp.sxlp .sxlp__btn--light:hover { background: #fff; color: var(--c-accent); }
.sxlp.sxlp .sxlp__btn--onDark {
  background: rgba(255,255,255,.09); color: #fff;
  border-color: rgba(255,255,255,.26); box-shadow: none;
}
.sxlp.sxlp .sxlp__btn--onDark:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ============================ 1. HERO ============================ */
.sxlp.sxlp .sxlp__hero {
  position: relative;
  background: var(--c-ink-deep);
  overflow: hidden;
  isolation: isolate;
}
/* soft accent bloom + fine grid, so the panel never looks flat */
.sxlp__hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 500px at 12% -10%, rgba(247,55,96,.24), transparent 62%),
    radial-gradient(900px 460px at 88% 108%, rgba(79,87,141,.44), transparent 60%);
}
.sxlp__hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 30% 40%, #000, transparent 78%);
}
.sxlp__hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  padding-block: clamp(46px, 5.4vw, 76px);
}

.sxlp.sxlp .sxlp__crumb {
  font-size: 13px; color: rgba(255,255,255,.62); margin-bottom: 20px;
  letter-spacing: -.005em;
}
.sxlp.sxlp .sxlp__crumb a { color: rgba(255,255,255,.62); }
.sxlp.sxlp .sxlp__crumb a:hover { color: #fff; }
.sxlp.sxlp .sxlp__crumb span { color: var(--c-accent); }

.sxlp__badge {
  display: inline-block; margin-bottom: 16px;
  font-family: var(--ff-head); font-size: 11.5px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: #fff;
  background: var(--c-accent); padding: 7px 15px; border-radius: 999px;
}

.sxlp.sxlp .sxlp__hero h1 {
  color: #fff;
  font-size: clamp(33px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.038em;
  font-weight: 800;
  margin: 0 0 18px;
  max-width: 15ch;
}
/* keep the place name on its own visual beat without an ugly forced break */
.sxlp.sxlp .sxlp__hero h1 span {
  display: block; color: var(--c-accent); font-weight: 800;
}
.sxlp.sxlp .sxlp__hero-lead {
  color: #c6cbe2; font-size: clamp(15.5px, 1.3vw, 17.5px);
  line-height: 1.7; max-width: 52ch; margin: 0 0 4px;
}

.sxlp__trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 30px 0 0; padding: 0; list-style: none;
}
.sxlp__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #dfe3f4;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  padding: 8px 14px; border-radius: 999px;
}
.sxlp__trust svg { width: 15px; height: 15px; fill: var(--c-accent); flex: none; }

.sxlp__hero-media { position: relative; }
.sxlp.sxlp .sxlp__hero-media img {
  width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  border: 1px solid rgba(255,255,255,.12);
}
.sxlp__hero-tag {
  position: absolute; left: -14px; bottom: 26px;
  background: #fff; border-radius: 14px; padding: 14px 20px;
  box-shadow: var(--sh-2); min-width: 148px;
}
.sxlp__hero-tag b {
  display: block; font-family: var(--ff-head); font-weight: 800;
  font-size: 23px; color: var(--c-accent); line-height: 1.1; letter-spacing: -.03em;
}
.sxlp__hero-tag span {
  display: block; margin-top: 3px; font-size: 12.5px;
  color: var(--c-slate); font-weight: 600; line-height: 1.4;
}

/* ======================= 2. STAT CARDS ======================= */
/* fixed 3-up so six items land 3x2 instead of orphaning one on a second row */
.sxlp__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sxlp__stat {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r);
  padding: 22px 20px; box-shadow: var(--sh-1);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sxlp__stat::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: var(--c-accent); transform: scaleY(0); transform-origin: top;
  transition: transform .24s ease;
}
.sxlp__stat:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: #cdd4e8; }
.sxlp__stat:hover::before { transform: scaleY(1); }
.sxlp__stat b {
  display: block; font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(21px, 2.1vw, 27px); color: var(--c-ink);
  line-height: 1.1; letter-spacing: -.034em;
}
.sxlp__stat span {
  display: block; margin-top: 6px; font-size: 13.5px;
  color: var(--c-muted); font-weight: 600; line-height: 1.45;
}

/* ======================= 3. SPLIT ======================= */
.sxlp__split {
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(30px, 4.6vw, 64px); align-items: center;
}
.sxlp.sxlp .sxlp__split-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--sh-2);
}
.sxlp__ticks { display: grid; gap: 14px; margin: 0 0 4px; }
.sxlp__ticks li {
  position: relative; padding-left: 32px;
  font-size: 15.5px; color: var(--c-slate); line-height: 1.65;
}
.sxlp__ticks li strong { color: var(--c-ink); font-weight: 800; }
.sxlp__ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-accent-soft);
  box-shadow: inset 0 0 0 1.5px rgba(247,55,96,.32);
}
.sxlp__ticks li::after {
  content: ""; position: absolute; left: 5.5px; top: 9.5px;
  width: 9px; height: 5px; border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg);
}

/* ======================= 4. CONNECTIVITY ======================= */
.sxlp__conn { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; }
.sxlp__card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r); box-shadow: var(--sh-1); overflow: hidden;
}
.sxlp__card-hd {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 22px; background: var(--c-ink); color: #fff;
  font-family: var(--ff-head); font-weight: 700; font-size: 15px; letter-spacing: -.01em;
}
.sxlp__card-hd svg { width: 18px; height: 18px; fill: var(--c-accent); flex: none; }
.sxlp.sxlp .sxlp__card table { width: 100%; border-collapse: collapse; font-size: 14.6px; }
.sxlp.sxlp .sxlp__card td {
  padding: 11px 22px; border-bottom: 1px solid #eef0f7;
  color: var(--c-slate); vertical-align: top; background: none;
}
.sxlp.sxlp .sxlp__card tr:last-child td { border-bottom: 0; }
.sxlp.sxlp .sxlp__card td:last-child {
  text-align: right; font-weight: 800; color: var(--c-ink);
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.sxlp.sxlp .sxlp__card tr:nth-child(even) td { background: #fafbfe; }
.sxlp__note { font-size: 13.5px; color: var(--c-muted); margin-top: 18px; }

/* ======================= 5. CHIPS / NEARBY ======================= */
.sxlp__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.sxlp__chip {
  background: #fff; border: 1px solid var(--c-line); border-radius: 999px;
  padding: 10px 18px; font-family: var(--ff-head); font-weight: 700;
  font-size: 14px; color: var(--c-ink);
  transition: border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sxlp__chip:hover {
  border-color: var(--c-accent); color: var(--c-accent);
  transform: translateY(-2px); box-shadow: var(--sh-1);
}
.sxlp__near { display: flex; flex-wrap: wrap; gap: 9px; }
.sxlp.sxlp .sxlp__near a {
  border: 1px solid var(--c-line); background: #fff; border-radius: var(--r-sm);
  padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--c-slate);
  transition: all .18s ease;
}
.sxlp.sxlp .sxlp__near a:hover {
  border-color: var(--c-accent); color: var(--c-accent); box-shadow: var(--sh-1);
}

/* ======================= 6. OFFER CARDS ======================= */
/* 4 offer cards: explicit tracks so a 4-item set never lands 3 + 1 */
.sxlp__grid3 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1180px) { .sxlp__grid3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (max-width: 620px)  { .sxlp__grid3 { grid-template-columns: 1fr; } }
.sxlp__offer {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-1);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sxlp__offer:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: #cdd4e8; }
.sxlp.sxlp .sxlp__offer img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.sxlp__offer-b { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.sxlp.sxlp .sxlp__offer h3 { font-size: 18.5px; margin-bottom: 10px; }
.sxlp__offer p { font-size: 14.6px; color: var(--c-slate); flex: 1; line-height: 1.62; }
.sxlp__spec { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 14px; }
.sxlp__spec li {
  font-size: 12px; font-weight: 700; background: var(--c-wash);
  color: var(--c-slate); padding: 5px 10px; border-radius: 999px;
  border: 1px solid #e8ebf5;
}
.sxlp.sxlp .sxlp__link {
  font-family: var(--ff-head); font-weight: 800; font-size: 14px;
  color: var(--c-accent); display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; background: none; border: 0; padding: 0; margin-top: 16px;
  text-transform: none; transition: gap .18s ease;
}
.sxlp.sxlp .sxlp__link:hover { gap: 11px; }
.sxlp.sxlp .sxlp__link svg { width: 14px; height: 14px; fill: currentColor; }

/* ======================= 7. PROCESS ======================= */
/* 6 process steps: 3 x 2, never 4 + 2 */
.sxlp__steps { counter-reset: s; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 980px) { .sxlp__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .sxlp__steps { grid-template-columns: 1fr; } }
.sxlp__step {
  position: relative; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r); padding: 26px 22px 24px; box-shadow: var(--sh-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sxlp__step:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.sxlp__step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  display: inline-block; margin-bottom: 12px;
  font-family: var(--ff-head); font-size: 13px; font-weight: 800;
  color: var(--c-accent); letter-spacing: .06em;
  background: var(--c-accent-soft); padding: 5px 11px; border-radius: 999px;
}
.sxlp.sxlp .sxlp__step h3 { font-size: 17px; margin-bottom: 8px; }
.sxlp__step p { font-size: 14.4px; color: var(--c-slate); margin: 0; line-height: 1.62; }

/* ======================= 8. USPs ======================= */
.sxlp.sxlp .sxlp__usp-sec { background: var(--c-ink-deep); position: relative; overflow: hidden; }
.sxlp__usp-sec::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 420px at 85% 0%, rgba(247,55,96,.16), transparent 62%);
}
.sxlp__usp-sec > * { position: relative; z-index: 1; }
.sxlp.sxlp .sxlp__usp-sec h2,
.sxlp.sxlp .sxlp__usp-sec h3 { color: #fff; }
.sxlp.sxlp .sxlp__usp-sec .sxlp__lead { color: #b9c0dc; }
.sxlp__usps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 980px) { .sxlp__usps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .sxlp__usps { grid-template-columns: 1fr; } }
.sxlp__usp {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 26px 22px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.sxlp__usp:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(247,55,96,.46); transform: translateY(-3px);
}
.sxlp__usp-ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--c-accent);
  display: grid; place-items: center; margin-bottom: 15px;
  box-shadow: 0 6px 16px rgba(247,55,96,.32);
}
.sxlp__usp-ic svg { width: 21px; height: 21px; fill: #fff; }
.sxlp__usp p { color: #b3bad8; font-size: 14.4px; margin: 0; line-height: 1.62; }

/* ======================= 9. LOGO MARQUEE ======================= */
.sxlp__marquee {
  overflow: hidden; position: relative; padding: 4px 0;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sxlp__track { display: flex; gap: 18px; width: max-content; animation: sxlp-scroll 42s linear infinite; }
.sxlp__marquee:hover .sxlp__track { animation-play-state: paused; }
@keyframes sxlp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.sxlp__logo {
  flex: none; width: 176px; height: 92px; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--r-sm);
  display: grid; place-items: center; padding: 16px;
}
.sxlp.sxlp .sxlp__logo img {
  max-height: 46px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .55; transition: filter .25s ease, opacity .25s ease;
}
.sxlp__logo:hover img { filter: grayscale(0); opacity: 1; }

/* ======================= 10. TESTIMONIALS ======================= */
.sxlp__quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.sxlp__quote {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r);
  padding: 28px 26px; box-shadow: var(--sh-1); position: relative;
}
.sxlp__quote::before {
  content: "\201C"; position: absolute; top: 2px; right: 22px;
  font-family: Georgia, serif; font-size: 76px; color: var(--c-accent);
  opacity: .13; line-height: 1;
}
.sxlp__quote p { font-size: 15.2px; color: var(--c-slate); position: relative; z-index: 1; line-height: 1.68; }
.sxlp__by {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid #eef0f7;
}
.sxlp__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--c-ink); color: #fff; display: grid; place-items: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 14px;
}
.sxlp__by b { display: block; font-family: var(--ff-head); font-size: 14.5px; color: var(--c-ink); }
.sxlp__by span { display: block; font-size: 13px; color: var(--c-muted); }
.sxlp__slot { border-style: dashed; background: var(--c-wash); box-shadow: none; }
.sxlp__slot p { font-size: 14.2px; color: var(--c-muted); }
.sxlp__slot .sxlp__av { background: #c3c9de; }

/* ======================= 11. FAQ ======================= */
.sxlp__faq { max-width: 860px; margin: 0 auto; }
.sxlp__faq details {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-sm);
  margin-bottom: 10px; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sxlp__faq details[open] { border-color: rgba(247,55,96,.42); box-shadow: var(--sh-1); }
.sxlp__faq summary {
  list-style: none; cursor: pointer; padding: 18px 54px 18px 22px; position: relative;
  font-family: var(--ff-head); font-weight: 700; font-size: 16px;
  color: var(--c-ink); letter-spacing: -.018em; line-height: 1.45;
}
.sxlp__faq summary::-webkit-details-marker { display: none; }
.sxlp__faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; margin-top: -7px;
  width: 14px; height: 14px; transition: transform .22s ease;
  background:
    linear-gradient(var(--c-accent), var(--c-accent)) center/14px 2.5px no-repeat,
    linear-gradient(var(--c-accent), var(--c-accent)) center/2.5px 14px no-repeat;
}
.sxlp__faq details[open] summary::after { transform: rotate(135deg); }
.sxlp__ans { padding: 0 22px 20px; font-size: 15px; color: var(--c-slate); line-height: 1.72; }

/* ======================= 12. CTA BAND ======================= */
.sxlp__band {
  position: relative; overflow: hidden;
  background: linear-gradient(118deg, var(--c-accent) 0%, #c8194a 100%);
  color: #fff; border-radius: var(--r-lg);
  padding: clamp(34px, 4.4vw, 60px); text-align: center;
  box-shadow: 0 22px 54px rgba(200,25,74,.30);
}
.sxlp__band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
          mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
}
.sxlp__band > * { position: relative; z-index: 1; }
.sxlp.sxlp .sxlp__band h2 { color: #fff; margin-bottom: 12px; max-width: 21ch; margin-inline: auto; }
.sxlp.sxlp .sxlp__band p { color: rgba(255,255,255,.94); max-width: 58ch; margin-inline: auto; font-size: 16.5px; }
.sxlp.sxlp .sxlp__band .sxlp__btn--wa { background: #fff; color: #0f7a3c; }
.sxlp.sxlp .sxlp__band .sxlp__btn--wa:hover { background: #f1fff6; color: #0b5c2c; }

/* ============================================================================
   ENQUIRY MODAL — 50 / 50, autosliding service imagery
   ========================================================================= */
.sxlp-modal {
  position: fixed; inset: 0; z-index: 99999; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(15,17,32,.74); backdrop-filter: blur(6px);
}
.sxlp-modal.is-open { display: flex; animation: sxlp-fade .22s ease; }
@keyframes sxlp-fade { from { opacity: 0; } to { opacity: 1; } }
.sxlp-modal__box {
  width: min(1000px, 100%); max-height: min(680px, 94vh);
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
  box-shadow: 0 34px 90px rgba(0,0,0,.44);
  animation: sxlp-pop .3s cubic-bezier(.2,.9,.3,1);
}
@keyframes sxlp-pop { from { opacity: 0; transform: translateY(20px) scale(.975); } to { opacity: 1; transform: none; } }
.sxlp-modal__x {
  position: absolute; top: 13px; right: 13px; z-index: 6;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.94); color: var(--c-ink);
  display: grid; place-items: center; box-shadow: 0 3px 12px rgba(0,0,0,.24);
  transition: background .18s, color .18s, transform .18s;
}
.sxlp-modal__x:hover { background: var(--c-accent); color: #fff; transform: rotate(90deg); }
.sxlp-modal__x svg { width: 16px; height: 16px; fill: currentColor; }

.sxlp-modal__media { position: relative; background: var(--c-ink-deep); overflow: hidden; min-height: 250px; }
.sxlp-modal__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.sxlp-modal__slide.is-on { opacity: 1; }
.sxlp.sxlp .sxlp-modal__slide img { width: 100%; height: 100%; object-fit: cover; }
.sxlp-modal__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,42,.12) 0%, rgba(20,23,42,.92) 100%);
}
.sxlp-modal__cap { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 26px 24px 24px; color: #fff; pointer-events: none; }
.sxlp-modal__cap b {
  display: block; font-family: var(--ff-head); font-size: 20px;
  font-weight: 800; letter-spacing: -.026em; margin-bottom: 5px;
}
.sxlp-modal__cap span { font-size: 13.5px; color: #ccd2e8; line-height: 1.55; display: block; }
.sxlp-modal__dots { display: flex; gap: 6px; margin-top: 15px; pointer-events: auto; }
.sxlp-modal__dots button {
  width: 24px; height: 4px; border-radius: 99px; border: 0; padding: 0;
  cursor: pointer; background: rgba(255,255,255,.34); transition: background .25s;
}
.sxlp-modal__dots button.is-on { background: var(--c-accent); }

.sxlp-modal__form { padding: 30px 32px; overflow-y: auto; display: flex; flex-direction: column; justify-content: center; }
@media (max-height: 780px) { .sxlp-modal__form { justify-content: flex-start; } }
.sxlp.sxlp .sxlp-modal__form h3 {
  font-size: 24px; font-weight: 800; color: var(--c-ink);
  margin: 0 0 7px; letter-spacing: -.03em; line-height: 1.2;
}
.sxlp-modal__form > div > p { font-size: 14.3px; color: var(--c-slate); margin: 0 0 22px; line-height: 1.55; }

/* Google-style floating labels. Class driven, because CF7 wraps every control
   in a <span class="wpcf7-form-control-wrap"> which breaks sibling selectors. */
.sxlp-f { position: relative; margin-bottom: 17px; }
.sxlp.sxlp .sxlp-f input,
.sxlp.sxlp .sxlp-f textarea,
.sxlp.sxlp .sxlp-f select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--c-ink);
  background: #fff; border: 1.6px solid var(--c-line); border-radius: var(--r-sm);
  padding: 15px 14px 14px; outline: none; line-height: 1.35; box-shadow: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.sxlp.sxlp .sxlp-f textarea { min-height: 74px; resize: vertical; }
.sxlp.sxlp .sxlp-f select {
  appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234f578d'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
}
.sxlp.sxlp .sxlp-f label {
  position: absolute; left: 12px; top: 15px; padding: 0 5px; pointer-events: none;
  font-size: 15px; color: #8990b4; background: #fff; line-height: 1.2;
  transition: top .16s ease, font-size .16s ease, color .16s ease; z-index: 2;
}
.sxlp.sxlp .sxlp-f input:focus,
.sxlp.sxlp .sxlp-f textarea:focus,
.sxlp.sxlp .sxlp-f select:focus {
  border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(247,55,96,.13);
}
.sxlp.sxlp .sxlp-f.is-focus label,
.sxlp.sxlp .sxlp-f.is-filled label { top: -9px; font-size: 12px; font-weight: 800; letter-spacing: .01em; }
.sxlp.sxlp .sxlp-f.is-focus label { color: var(--c-accent); }
.sxlp.sxlp .sxlp-f.is-filled:not(.is-focus) label { color: var(--c-slate); }
.sxlp-f .wpcf7-form-control-wrap { display: block; position: static; }
/* belt and braces: if CF7 ever re-introduces autop, don't let stray
   paragraphs or breaks reopen the gap under each control */
.sxlp.sxlp .sxlp-modal__form form p { margin: 0; width: 100%; }
.sxlp.sxlp .sxlp-modal__form form br { display: none; }
.sxlp-req { color: var(--c-accent); }

.sxlp.sxlp .sxlp-f .wpcf7-not-valid {
  border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.11);
}
.sxlp.sxlp .sxlp-f .wpcf7-not-valid-tip {
  display: block; font-size: 12.4px; color: #dc2626; margin-top: 5px; font-weight: 700;
}
.sxlp.sxlp .sxlp-modal__form .wpcf7-response-output {
  margin: 14px 0 0; padding: 12px 15px; border-radius: var(--r-sm);
  font-size: 13.8px; border-width: 1.5px;
}
/* Avada forces width:auto on submit inputs, hence the !important here */
.sxlp.sxlp .sxlp-modal__submit {
  width: 100% !important; background: var(--c-accent); color: #fff; border: 0;
  border-radius: 999px; cursor: pointer; font-family: var(--ff-head);
  font-weight: 800; font-size: 15.5px; padding: 16px 26px; margin-top: 4px;
  text-transform: none; letter-spacing: -.008em;
  box-shadow: 0 6px 18px rgba(247,55,96,.30);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sxlp.sxlp .sxlp-modal__submit:hover {
  background: var(--c-accent-dk); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247,55,96,.40);
}
.sxlp-modal__alt { margin: 16px 0 0; font-size: 13.2px; color: var(--c-slate); text-align: center; line-height: 1.6; }
.sxlp.sxlp .sxlp-modal__alt a { color: #0f7a3c; font-weight: 800; }
.sxlp-modal__priv { margin: 10px 0 0; font-size: 11.8px; color: #9aa0bf; text-align: center; line-height: 1.5; }

.sxlp-modal__thanks { display: none; text-align: center; padding: 14px 4px; }
.sxlp-modal__thanks.is-on { display: block; animation: sxlp-fade .3s ease; }
.sxlp-tick {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(30,185,90,.13); display: grid; place-items: center; margin: 0 auto 18px;
}
.sxlp-tick svg { width: 32px; height: 32px; fill: var(--c-wa); }
.sxlp-modal__thanks p { font-size: 14.6px; color: var(--c-slate); margin: 0 auto 20px; max-width: 38ch; line-height: 1.62; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .sxlp__hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .sxlp.sxlp .sxlp__hero h1 { max-width: 100%; }
  .sxlp.sxlp .sxlp__hero-media img { aspect-ratio: 16 / 9; }
  .sxlp__hero-tag { left: 16px; bottom: 16px; }
}
@media (max-width: 900px) {
  .sxlp__split { grid-template-columns: 1fr; gap: 32px; }
  .sxlp__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .sxlp-modal { padding: 0; }
  .sxlp-modal__box {
    grid-template-columns: 1fr; grid-template-rows: auto 1fr;
    width: 100%; height: 100%; max-height: 100vh; border-radius: 0;
  }
  .sxlp-modal__media { min-height: 170px; max-height: 24vh; }
  .sxlp-modal__cap { padding: 16px 20px 14px; }
  .sxlp-modal__cap b { font-size: 16px; }
  .sxlp-modal__cap span { font-size: 12.4px; }
  .sxlp-modal__form { padding: 24px 20px 32px; justify-content: flex-start; }
  .sxlp.sxlp .sxlp-modal__form h3 { font-size: 20px; }
}
@media (max-width: 600px) {
  .sxlp { font-size: 16px; }
  .sxlp__sec { padding-block: 46px; }
  .sxlp__cta-row .sxlp__btn { width: 100%; }
  .sxlp__stats { gap: 10px; }
  .sxlp__stat { padding: 17px 15px; }
  .sxlp.sxlp .sxlp__card td { padding: 10px 15px; font-size: 13.6px; }
  .sxlp__faq summary { font-size: 15px; padding: 15px 44px 15px 17px; }
  .sxlp__ans { padding: 0 17px 17px; font-size: 14.4px; }
  .sxlp__logo { width: 142px; height: 80px; }
  .sxlp__trust li { font-size: 12.2px; padding: 7px 12px; }
  .sxlp__hero-tag { position: static; margin-top: 14px; display: inline-block; }
}
@media (prefers-reduced-motion: reduce) {
  .sxlp__track { animation: none; }
  .sxlp.sxlp * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Avada styles bare <select> with its own arrow chrome and width, which
   overhangs our field box. Scoped to the modal form only so no other select
   on the site is touched. */
.sxlp.sxlp .sxlp-modal__form select.wpcf7-select {
  -webkit-appearance: none !important;
          appearance: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 15px 40px 14px 14px !important;
  border: 1.6px solid var(--c-line) !important;
  border-radius: var(--r-sm) !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234f578d'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 20px !important;
  height: auto !important;
  line-height: 1.35 !important;
}
.sxlp.sxlp .sxlp-modal__form select.wpcf7-select:focus {
  border-color: var(--c-accent) !important;
  box-shadow: 0 0 0 3px rgba(247,55,96,.13) !important;
}
