/* 3Syxty /enquiry/ landing page - self-contained modern stylesheet.
 * Namespaced under .syxty-l so it never collides with Mobirise / Bootstrap
 * styles used elsewhere on the site. Dark theme harmonised with
 * /assets/admin/lead-form.css (#1a1a1a + #ff3366 -> #ff6a3d gradient). */

/* ---------- design tokens (defaults: dark) ---------- */
.syxty-l {
  --c-bg:        #0d0f12;
  --c-bg-2:      #15181d;
  --c-bg-3:      #1c2026;
  --c-line:      #2a2f37;
  --c-text:      #f3f5f8;
  --c-muted:     #a4adbb;
  --c-dim:       #6c7585;
  --c-accent:    #ff3366;
  --c-accent-2:  #ff6a3d;
  --c-accent-3:  #ffb24a;
  --c-success:   #4ade80;
  --grad-accent: linear-gradient(135deg, #ff3366 0%, #ff6a3d 60%, #ffb24a 100%);
  --grad-accent-soft: linear-gradient(135deg, rgba(255,51,102,.18), rgba(255,106,61,.12) 60%, rgba(255,178,74,.08));
  --shadow-1:    0 1px 2px rgba(0,0,0,.4), 0 6px 18px rgba(0,0,0,.35);
  --shadow-2:    0 24px 60px rgba(0,0,0,.55), 0 8px 24px rgba(0,0,0,.4);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --container:   1180px;
  --gutter:      clamp(1rem, 3.5vw, 2rem);

  /* Hero overlay (recoloured per theme) */
  --hero-tint:   linear-gradient(180deg, rgba(13,15,18,.4) 0%, rgba(13,15,18,.96) 100%);
  --hero-fade:   linear-gradient(180deg, transparent, var(--c-bg));
  --nav-bg:      rgba(13, 15, 18, .55);
  --nav-bg-stuck:rgba(13, 15, 18, .92);

  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 240ms ease, color 240ms ease;
}

/* ---------- light theme ---------- */
.syxty-l[data-theme="light"] {
  --c-bg:        #f7f8fb;
  --c-bg-2:      #eef1f6;
  --c-bg-3:      #ffffff;
  --c-line:      #dfe4ec;
  --c-text:      #11151c;
  --c-muted:     #4d5666;
  --c-dim:       #7c8597;
  --c-accent:    #e6234f;
  --c-accent-2:  #e85a2b;
  --c-accent-3:  #d68a14;
  --grad-accent: linear-gradient(135deg, #e6234f 0%, #ff6a3d 55%, #ffb24a 100%);
  --grad-accent-soft: linear-gradient(135deg, rgba(230,35,79,.10), rgba(255,106,61,.08) 60%, rgba(255,178,74,.06));
  --shadow-1:    0 1px 2px rgba(15,18,25,.05), 0 6px 18px rgba(15,18,25,.06);
  --shadow-2:    0 24px 60px rgba(15,18,25,.12), 0 8px 24px rgba(15,18,25,.08);
  --hero-tint:   linear-gradient(180deg, rgba(247,248,251,.55) 0%, rgba(247,248,251,.96) 100%);
  --hero-fade:   linear-gradient(180deg, transparent, var(--c-bg));
  --nav-bg:      rgba(247, 248, 251, .7);
  --nav-bg-stuck:rgba(247, 248, 251, .93);
}

/* ---------- global resets scoped to the landing canvas ---------- */
.syxty-l *,
.syxty-l *::before,
.syxty-l *::after { box-sizing: border-box; }

.syxty-l img,
.syxty-l svg { display: block; max-width: 100%; height: auto; }

.syxty-l a { color: inherit; text-decoration: none; }
.syxty-l a:focus-visible,
.syxty-l button:focus-visible,
.syxty-l input:focus-visible,
.syxty-l select:focus-visible,
.syxty-l textarea:focus-visible {
  outline: 3px solid rgba(255, 106, 61, .55);
  outline-offset: 3px;
  border-radius: 6px;
}

.syxty-l h1, .syxty-l h2, .syxty-l h3, .syxty-l h4 {
  margin: 0 0 .5em 0;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.syxty-l p { margin: 0 0 1em 0; }
.syxty-l p:last-child { margin-bottom: 0; }

.syxty-l__container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.syxty-l__skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-text);
  color: var(--c-bg);
  padding: .6rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 1000;
}
.syxty-l__skip:focus { left: 0; }

/* ---------- nav ---------- */
.syxty-l__nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.syxty-l__nav.is-stuck {
  background: var(--nav-bg-stuck);
  border-bottom-color: var(--c-line);
  box-shadow: var(--shadow-1);
}
.syxty-l__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .75rem;
}
.syxty-l__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.syxty-l__brand img { height: 36px; width: auto; }
.syxty-l__nav-links {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.syxty-l__nav-links a {
  font-size: .92rem;
  color: var(--c-muted);
  font-weight: 500;
  transition: color 150ms ease;
}
.syxty-l__nav-links a:hover { color: var(--c-text); }

.syxty-l__nav-tools { display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- theme toggle ---------- */
.syxty-l__theme {
  --tt-size: 38px;
  position: relative;
  width: var(--tt-size);
  height: var(--tt-size);
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-muted);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.syxty-l__theme:hover {
  color: var(--c-text);
  border-color: var(--c-text);
  background: rgba(127, 127, 127, .08);
}
.syxty-l__theme svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 350ms cubic-bezier(.4, .2, .2, 1), opacity 240ms ease;
}
.syxty-l__theme .icon-sun,
.syxty-l__theme .icon-moon {
  position: absolute;
  inset: 0;
  margin: auto;
}
/* default (dark theme): show moon, hide sun */
.syxty-l__theme .icon-sun  { opacity: 0; transform: rotate(90deg) scale(.6); }
.syxty-l__theme .icon-moon { opacity: 1; transform: rotate(0)    scale(1); }
.syxty-l[data-theme="light"] .syxty-l__theme .icon-sun  { opacity: 1; transform: rotate(0)     scale(1); }
.syxty-l[data-theme="light"] .syxty-l__theme .icon-moon { opacity: 0; transform: rotate(-90deg) scale(.6); }

.syxty-l__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 51, 102, .3);
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
  white-space: nowrap;
}
.syxty-l__cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255, 51, 102, .4); }
.syxty-l__cta:active { transform: translateY(0); }
.syxty-l__cta--ghost {
  background: transparent;
  border: 1px solid var(--c-line);
  color: var(--c-text);
  box-shadow: none;
}
.syxty-l__cta--ghost:hover {
  border-color: var(--c-text);
  background: rgba(255,255,255,.04);
  box-shadow: none;
}

@media (min-width: 860px) {
  .syxty-l__nav-links { display: flex; }
}

/* ---------- hero ---------- */
.syxty-l__hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.syxty-l__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 70% 10%, rgba(255, 106, 61, .25), transparent 70%),
    radial-gradient(50% 40% at 15% 25%, rgba(255, 51, 102, .22), transparent 65%),
    var(--hero-tint),
    url("/bpl-header copy.jpg") center/cover no-repeat;
  z-index: -1;
  filter: saturate(110%);
  transition: background 240ms ease;
}
.syxty-l__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 120px;
  background: var(--hero-fade);
  z-index: -1;
}

.syxty-l__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent-3);
  background: rgba(255, 178, 74, .08);
  border: 1px solid rgba(255, 178, 74, .2);
  padding: .35rem .75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.syxty-l__eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent-3);
  box-shadow: 0 0 0 4px rgba(255, 178, 74, .15);
}

.syxty-l__h1 {
  font-size: clamp(2.25rem, 4.5vw + .5rem, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.syxty-l__h1 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.syxty-l__hero-lede {
  font-size: clamp(1.05rem, .5vw + .9rem, 1.3rem);
  color: var(--c-muted);
  max-width: 56ch;
  margin-bottom: 2rem;
}
.syxty-l__hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.syxty-l__hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 1.5rem;
  max-width: 640px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}
.syxty-l__stat strong {
  display: block;
  font-size: clamp(1.6rem, 2vw + .5rem, 2.2rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .25rem;
}
.syxty-l__stat span {
  font-size: .85rem;
  color: var(--c-muted);
  letter-spacing: .02em;
}

/* ---------- generic section ---------- */
.syxty-l__section {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  position: relative;
}
.syxty-l__section--alt { background: var(--c-bg-2); }
.syxty-l__section-head {
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.syxty-l__section-head .syxty-l__eyebrow { margin-bottom: 1rem; }
.syxty-l__section-head h2 {
  font-size: clamp(1.8rem, 2.5vw + .8rem, 2.85rem);
  letter-spacing: -0.02em;
}
.syxty-l__section-head p {
  color: var(--c-muted);
  font-size: clamp(1rem, .3vw + .9rem, 1.15rem);
  margin-top: .5rem;
}

/* ---------- trust strip ---------- */
.syxty-l__trust {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  background: var(--c-bg-2);
  border-block: 1px solid var(--c-line);
}
.syxty-l__trust-label {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-dim);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.syxty-l__trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem) clamp(1.25rem, 4vw, 3rem);
}
.syxty-l__trust-row li {
  list-style: none;
  font-weight: 600;
  font-size: clamp(.95rem, .3vw + .85rem, 1.1rem);
  color: var(--c-muted);
  letter-spacing: .005em;
  transition: color 150ms ease, transform 150ms ease;
  position: relative;
}
.syxty-l__trust-row li::after {
  content: "";
  position: absolute;
  right: -1.25rem;
  top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--c-line);
  transform: translateY(-50%);
}
.syxty-l__trust-row li:last-child::after { display: none; }
.syxty-l__trust-row a:hover { color: var(--c-text); }

@media (max-width: 720px) {
  .syxty-l__trust-row li::after { display: none; }
}

/* ---------- showcase grid ---------- */
.syxty-l__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.syxty-l__tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  aspect-ratio: 4 / 3;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.syxty-l__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 300ms ease;
}
.syxty-l__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}
/* tile copy stays light over the photo in both themes */
.syxty-l__tile-name { color: #ffffff; }
.syxty-l__tile-cta  { color: rgba(255,255,255,.8); }
.syxty-l__tile:hover .syxty-l__tile-cta { color: #ffffff; }
.syxty-l__tile-meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.syxty-l__tile-tag {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-accent-3);
  font-weight: 600;
}
.syxty-l__tile-name {
  font-size: 1.05rem;
  font-weight: 700;
}
.syxty-l__tile-cta {
  margin-top: .25rem;
  font-size: .82rem;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color 150ms ease, transform 150ms ease;
}
.syxty-l__tile-cta::after {
  content: "->";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8rem;
  transition: transform 200ms ease;
}
.syxty-l__tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 61, .4);
  box-shadow: var(--shadow-2);
}
.syxty-l__tile:hover img { transform: scale(1.06); filter: saturate(115%); }
.syxty-l__tile:hover .syxty-l__tile-cta::after { transform: translateX(4px); }

.syxty-l__grid-foot {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

/* ---------- benefit cards ---------- */
.syxty-l__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.syxty-l__card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 1.5vw + .75rem, 1.75rem);
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}
.syxty-l__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad-accent);
  opacity: .55;
}
.syxty-l__card:hover { border-color: rgba(255, 106, 61, .35); transform: translateY(-3px); }
.syxty-l__card-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-accent-soft);
  color: var(--c-accent-2);
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 106, 61, .25);
}
.syxty-l__card-ico svg { width: 22px; height: 22px; stroke: currentColor; }
.syxty-l__card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.syxty-l__card p {
  font-size: .95rem;
  color: var(--c-muted);
}

/* ---------- steps ---------- */
.syxty-l__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  counter-reset: step;
}
.syxty-l__step {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  position: relative;
}
.syxty-l__step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .5rem;
}
.syxty-l__step h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.syxty-l__step p { color: var(--c-muted); font-size: .92rem; }

/* ---------- sectors ---------- */
.syxty-l__sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(.75rem, 1.5vw, 1rem);
}
.syxty-l__sector {
  position: relative;
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}
.syxty-l__sector:hover {
  border-color: rgba(255, 106, 61, .4);
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--c-bg-3), #20242c);
}
.syxty-l__sector-ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--grad-accent-soft);
  color: var(--c-accent-2);
  border: 1px solid rgba(255, 106, 61, .2);
}
.syxty-l__sector-ico svg { width: 20px; height: 20px; stroke: currentColor; }
.syxty-l__sector > span:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.35;
}
.syxty-l__sector-name {
  display: block;
  font-weight: 600;
  font-size: .98rem;
  color: var(--c-text);
}
.syxty-l__sector-sub {
  display: block;
  font-size: .78rem;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ---------- proof / testimonials ---------- */
.syxty-l__quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.syxty-l__quote {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.syxty-l__quote::before {
  content: "\201C";
  position: absolute;
  top: -.25rem; left: 1rem;
  font-family: 'Georgia', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 106, 61, .4);
}
.syxty-l__quote blockquote {
  margin: 0;
  font-size: .98rem;
  color: var(--c-text);
  line-height: 1.6;
  padding-top: 1.25rem;
}
.syxty-l__quote cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--c-muted);
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: auto;
}
.syxty-l__quote cite strong {
  display: block;
  color: var(--c-text);
  margin-bottom: .15rem;
}

/* ---------- FAQ ---------- */
.syxty-l__faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: .65rem;
}
.syxty-l__faq details {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color 200ms ease;
}
.syxty-l__faq details[open] { border-color: rgba(255, 106, 61, .4); }
.syxty-l__faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.syxty-l__faq summary::-webkit-details-marker { display: none; }
.syxty-l__faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-accent-2);
  font-weight: 400;
  flex: none;
  transition: transform 200ms ease;
}
.syxty-l__faq details[open] summary::after { content: "-"; }
.syxty-l__faq details > div {
  margin-top: .75rem;
  color: var(--c-muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* ---------- footer ---------- */
.syxty-l__footer {
  background: var(--c-bg-2);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  border-top: 1px solid var(--c-line);
  font-size: .9rem;
  color: var(--c-muted);
}
.syxty-l__footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) {
  .syxty-l__footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .syxty-l__footer-grid { grid-template-columns: 1fr; }
}
.syxty-l__footer h4 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: .9rem;
}
.syxty-l__footer p, .syxty-l__footer a { line-height: 1.7; }
.syxty-l__footer a:hover { color: var(--c-text); }
.syxty-l__footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
  font-size: .82rem;
  color: var(--c-dim);
}

/* ---------- reveal-on-scroll utility ---------- */
.syxty-l [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.syxty-l [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- accessibility / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .syxty-l *,
  .syxty-l *::before,
  .syxty-l *::after {
    transition: none !important;
    animation: none !important;
  }
  .syxty-l [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- harmonise embedded lead form (dark) ---------- */
.syxty-l + .syxty-lead,
.syxty-l .syxty-lead { background: var(--c-bg-2); }

/* ---------- light-mode override for embedded lead form ----------
 * The lead-form stylesheet ships with !important rules and a few hard-coded
 * dark colours. We override only what's needed to make it readable on a
 * light page, with the same accent gradient. */
.syxty-l[data-theme="light"] ~ .syxty-lead,
.syxty-l[data-theme="light"] .syxty-lead {
  --sl-bg-page:  #eef1f6;
  --sl-bg-card:  #ffffff;
  --sl-text:     #11151c;
  --sl-muted:    #4d5666;
  --sl-border:   #dfe4ec;
  --sl-input-bg: #f7f8fb;
  --sl-shadow:   0 24px 48px rgba(15,18,25,.10), 0 6px 16px rgba(15,18,25,.08);
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__inner,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__inner {
  border-color: var(--sl-border) !important;
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__title,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__title {
  color: #11151c !important;
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__row input,
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__row select,
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__row textarea,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__row input,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__row select,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__row textarea {
  color: #11151c !important;
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__row input::placeholder,
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__row textarea::placeholder,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__row input::placeholder,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__row textarea::placeholder {
  color: #9aa2b1 !important;
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__row select option,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__row select option {
  background: #ffffff; color: #11151c;
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__success strong,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__success strong {
  color: #11151c !important;
}
.syxty-l[data-theme="light"] ~ .syxty-lead .syxty-lead__success,
.syxty-l[data-theme="light"] .syxty-lead .syxty-lead__success {
  background: rgba(74, 222, 128, .10);
  border-color: rgba(74, 222, 128, .35);
}
