/* =========================================================================
   lbs.css — Live Band Web Studios (subfolder microsite)
   A vertical of Live Web Studios — Est. 2004

   IMPORTANT: This file loads ALONGSIDE the parent site's css/style.css.
   - The parent chrome (nav.site-nav + footer.site-footer) is styled by
     style.css and must NOT be touched here.
   - All microsite content lives inside <div class="lbs-scope"> and every
     rule below is scoped to .lbs-scope so it can never collide with the
     parent's generic classes (.section, .container, .btn-primary, etc.).
   - Font variables are namespaced (--lbs-font-*) so they don't clobber the
     parent's --font-body / --font-display (which the main nav relies on).
   - The thin 2nd menu (.lbs-subnav) is chrome — it lives OUTSIDE .lbs-scope
     and intentionally uses the parent font to match the main menu exactly.
   ========================================================================= */

:root {
  --lbs-navy:    #0a0f1a;
  --lbs-cyan:    #2ab8d4;
  --lbs-cyan-dk: #1f93ab;
  --lbs-gold:    #c9922a;
  --lbs-white:   #ffffff;
  --lbs-offwhite:#e8e6e0;
  --lbs-dark:    #0e0e0e;
  --lbs-mid:     #1a2232;
  --lbs-border:  rgba(42,184,212,0.15);
  --lbs-border-2:rgba(255,255,255,0.06);
  --lbs-muted:   #8a9ab0;   /* lightened for WCAG AA (>=4.5:1) on the dark backgrounds */

  --lbs-maxw: 1100px;
  --lbs-radius: 12px;
  --lbs-radius-btn: 6px;

  --lbs-font-display: 'Bebas Neue', Impact, sans-serif;
  --lbs-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --lbs-navh: 72px;   /* main nav height to offset the sub-header */
}

/* =========================================================================
   SUB-HEADER (thin 2nd menu, sits right under the main LWS nav)
   Matches the main nav: Sora (parent --font-body), 0.8125rem, 500, uppercase.
   Lives outside .lbs-scope.
   ========================================================================= */
.lbs-subnav {
  position: sticky;
  top: var(--lbs-navh);
  margin-top: var(--lbs-navh);   /* clears the fixed main nav on first paint */
  z-index: 95;
  background: rgba(28,42,68,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--lbs-border);
  border-bottom: 1px solid var(--lbs-border);
}
.lbs-subnav__inner {
  max-width: var(--container-outer, 1328px);
  margin: 0 auto;
  padding: 0 var(--container-pad, 24px);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* "Live Band Web Studios →" CTA — sits just to the LEFT of the menu links */
.lbs-subnav__cta {
  font-family: var(--font-body, 'Sora', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lbs-cyan);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid rgba(42,184,212,0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.lbs-subnav__cta:hover {
  background: rgba(42,184,212,0.12);
  border-color: var(--lbs-cyan);
  color: var(--lbs-white);
}
.lbs-subnav__cta-arrow {
  font-size: 1em;
  line-height: 1;
  display: inline-block;
  transition: transform .2s ease;
}
.lbs-subnav__cta:hover .lbs-subnav__cta-arrow { transform: translateX(2px); }
.lbs-subnav__brand {
  font-family: var(--font-body, 'Sora', sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lbs-cyan);
  white-space: nowrap;
}
.lbs-subnav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow: visible;
  scrollbar-width: none;
}
.lbs-subnav__links::-webkit-scrollbar { display: none; }
.lbs-subnav__links a {
  font-family: var(--font-body, 'Sora', sans-serif);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lbs-muted);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.lbs-subnav__links a:hover { color: var(--lbs-white); background: rgba(42,184,212,0.1); }
.lbs-subnav__links a.active { color: var(--lbs-cyan); }
.lbs-subnav a:focus-visible { outline: 2px solid var(--lbs-cyan); outline-offset: 2px; border-radius: 4px; color: var(--lbs-white); }

/* Forms dropdown */
.lbs-subnav__item { position: relative; display: inline-flex; align-items: center; }
.lbs-subnav__item > a::after { content: " \25BE"; font-size: .7em; opacity: .7; }
.lbs-subnav__drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(10,15,26,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--lbs-border);
  border-radius: 10px;
  padding: 6px;
  display: none;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  z-index: 96;
}
.lbs-subnav__item:hover .lbs-subnav__drop,
.lbs-subnav__item:focus-within .lbs-subnav__drop { display: flex; }
.lbs-subnav__drop a { padding: 9px 12px; border-radius: 6px; }

@media (max-width: 768px) {
  :root { --lbs-navh: 64px; }
  .lbs-subnav__inner { height: 44px; padding: 0 14px; }
  .lbs-subnav__brand { display: none; }
  .lbs-subnav__links { justify-content: flex-start; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* On mobile the Forms dropdown collapses — the Forms link goes to the hub which lists both forms */
  .lbs-subnav__drop { display: none !important; }
  .lbs-subnav__item > a::after { content: ""; }
}

/* =========================================================================
   SCOPED MICROSITE CONTENT — everything below is under .lbs-scope
   ========================================================================= */
.lbs-scope {
  background: var(--lbs-navy);
  color: var(--lbs-offwhite);
  font-family: var(--lbs-font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.lbs-scope * { box-sizing: border-box; }
.lbs-scope img { max-width: 100%; height: auto; display: block; }
.lbs-scope a { color: var(--lbs-cyan); text-decoration: none; transition: color .2s ease; }
.lbs-scope a:hover { color: var(--lbs-white); }
.lbs-scope ul { list-style: none; margin: 0; padding: 0; }
.lbs-scope p { margin: 0; }

.lbs-scope h1, .lbs-scope h2, .lbs-scope h3, .lbs-scope h4, .lbs-scope .display {
  font-family: var(--lbs-font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--lbs-white);
  text-transform: uppercase;
  margin: 0;
}
.lbs-scope :focus-visible { outline: 2px solid var(--lbs-cyan); outline-offset: 2px; border-radius: 2px; }

/* ---------- Layout ---------- */
.lbs-scope .container { max-width: var(--lbs-maxw); margin: 0 auto; padding: 0 2rem; }
.lbs-scope .section { padding: 5rem 0; }
.lbs-scope .section--dark { background: var(--lbs-dark); }
.lbs-scope .section--mid  { background: var(--lbs-mid); }
.lbs-scope .section--navy { background: var(--lbs-navy); }

.lbs-scope .eyebrow {
  font-family: var(--lbs-font-display);
  color: var(--lbs-gold);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.lbs-scope .section-heading { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 1rem; }
.lbs-scope .section-sub { color: var(--lbs-muted); font-size: 1.05rem; max-width: 620px; }
.lbs-scope .section-header { margin-bottom: 1rem; }
.lbs-scope .centered { text-align: center; }
.lbs-scope .centered .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.lbs-scope .btn-primary, .lbs-scope .btn-secondary, .lbs-scope .btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--lbs-font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  min-height: 44px;
  border-radius: var(--lbs-radius-btn);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-align: center;
}
.lbs-scope .btn-primary { background: var(--lbs-cyan); color: var(--lbs-white); border-color: var(--lbs-cyan); }
.lbs-scope .btn-primary:hover { background: var(--lbs-cyan-dk); border-color: var(--lbs-cyan-dk); color: #fff; }
.lbs-scope .btn-secondary { background: transparent; color: var(--lbs-cyan); border-color: var(--lbs-cyan); }
.lbs-scope .btn-secondary:hover { background: rgba(42,184,212,0.12); color: var(--lbs-white); }
.lbs-scope .btn-dark { background: var(--lbs-navy); color: var(--lbs-white); border-color: rgba(255,255,255,0.4); }
.lbs-scope .btn-dark:hover { background: #060a12; border-color: #fff; color: #fff; }
.lbs-scope .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.lbs-scope .btn-row.centered { justify-content: center; }
.lbs-scope .link-arrow { display: inline-block; margin-top: 1rem; font-weight: 500; }

/* ---------- Hero ---------- */
.lbs-scope .lbs-hero { position: relative; background: var(--lbs-navy); padding: 5rem 0; text-align: center; overflow: hidden; }
.lbs-scope .lbs-hero--tall { min-height: 72vh; display: flex; align-items: center; }
.lbs-scope .lbs-hero--mid  { min-height: 38vh; display: flex; align-items: center; }
.lbs-scope .lbs-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(42,184,212,1) 0, rgba(42,184,212,1) 1px, transparent 1px, transparent 14px);
  opacity: 0.04; pointer-events: none;
}
.lbs-scope .lbs-hero__inner { position: relative; z-index: 3; max-width: var(--lbs-maxw); margin: 0 auto; padding: 0 2rem; width: 100%; }

/* Extra .bg-photo variants whose images live under live-band-web-studios/images/
   (the base .bg-photo class + ::before overlay are defined in css/style.css).
   !important is required because .lbs-scope .section--dark uses the `background`
   shorthand (specificity 0,2,1) which would otherwise wipe out background-image. */
.bg-photo--bluestage,
.lbs-scope .bg-photo--bluestage,
.lbs-scope .section.bg-photo--bluestage,
.lbs-scope .section--dark.bg-photo--bluestage {
  background-image: url("images/bluestage.jpg") !important;
  background-color: #0e1a2b !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: cover !important;
}
.bg-photo--guitarmast,
.lbs-scope .bg-photo--guitarmast,
.lbs-scope .section.bg-photo--guitarmast,
.lbs-scope .section--dark.bg-photo--guitarmast {
  background-image: url("images/guitarmast.jpg") !important;
  background-color: #0e1a2b !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: cover !important;
}
/* When used on a form-hero (no .section padding), give the photo room to breathe */
.form-hero.bg-photo { padding-top: 4rem; padding-bottom: 3rem; }

/* Hero video on LBS pages — content is CENTERED, so override the
   index-hero mask (which is heavy on the left) with a flat uniform
   tint that darkens the video evenly. Text stays crisp everywhere. */
.lbs-hero .hero-video { object-position: center center; }
.lbs-hero .hero-video.loaded { opacity: 0.55; }
/* LBS index uses --tall and runs the dim drum video — brighten it. */
.lbs-hero--tall .hero-video.loaded { opacity: 1; }
.lbs-hero--tall .hero-video-mask {
  /* Slightly lighter overall tint so the brighter video reads cleanly */
  background:
    linear-gradient(180deg,
      rgba(11,18,32,0.50) 0%,
      rgba(11,18,32,0.32) 50%,
      rgba(11,18,32,0.50) 100%);
}
.lbs-hero .hero-video-mask {
  background:
    linear-gradient(180deg,
      rgba(11,18,32,0.55) 0%,
      rgba(11,18,32,0.40) 50%,
      rgba(11,18,32,0.55) 100%);
}
/* Crisper text-shadow so the headline reads sharply against the video */
.lbs-hero .hero-title,
.lbs-hero .hero-tagline,
.lbs-hero .section-sub,
.lbs-hero .eyebrow { text-shadow: 0 1px 16px rgba(0,0,0,0.55); }

/* Body copy in LBS heros over photos/videos: brighten the muted grey
   (default --lbs-muted) so it's legible. */
.lbs-hero .section-sub,
.lbs-hero .hero-subtagline,
.lbs-hero p { color: rgba(255,255,255,0.92); }

/* Center the BODY copy as a block inside every LBS hero.
   .hero-tagline / .hero-subtagline already set margin:auto in the
   base CSS, but .section-sub and inline-style paragraphs need help
   when their parent (.lbs-hero__inner) doesn't carry the .centered class. */
.lbs-hero .lbs-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lbs-hero .lbs-hero__inner > * { width: 100%; }
.lbs-hero .section-sub,
.lbs-hero .section-sub.centered,
.lbs-hero .lbs-hero__inner > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lbs-scope .lbs-logo-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.lbs-scope .lbs-logo__img { max-width: 420px; width: 100%; height: auto; }
.lbs-scope .lbs-logo__fallback {
  font-family: var(--lbs-font-display); font-size: clamp(2.4rem, 8vw, 4rem);
  color: var(--lbs-cyan); border-bottom: 3px solid var(--lbs-gold); padding-bottom: .35rem; letter-spacing: 0.04em;
}
.lbs-scope .hero-tagline { font-size: 1.4rem; color: var(--lbs-offwhite); max-width: 560px; margin: 1.25rem auto 0; line-height: 1.4; }
.lbs-scope .hero-subtagline { font-size: 1rem; color: var(--lbs-muted); max-width: 520px; margin: 1rem auto 0; }
.lbs-scope .hero-title { font-size: clamp(3rem, 9vw, 4.5rem); color: var(--lbs-white); }
.lbs-scope .hero-title--big { font-size: clamp(3.5rem, 11vw, 5.5rem); }

/* ---------- Grids + cards ---------- */
.lbs-scope .grid { display: grid; gap: 1.5rem; }
.lbs-scope .grid-2 { grid-template-columns: repeat(2, 1fr); }
.lbs-scope .grid-3 { grid-template-columns: repeat(3, 1fr); }
.lbs-scope .grid-4 { grid-template-columns: repeat(4, 1fr); }

.lbs-scope .card { background: var(--lbs-mid); border: 1px solid var(--lbs-border); border-radius: var(--lbs-radius); padding: 2rem; }
.lbs-scope .card--dark { background: var(--lbs-dark); }
.lbs-scope .card-icon { font-size: 2rem; color: var(--lbs-cyan); margin-bottom: 1rem; display: block; }
.lbs-scope .card h3 { font-size: 1.6rem; margin-bottom: .75rem; color: var(--lbs-white); }
.lbs-scope .card p { color: var(--lbs-offwhite); font-size: .98rem; }

.lbs-scope .split { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; align-items: center; }
.lbs-scope .pull-quote { font-family: var(--lbs-font-display); font-size: clamp(2rem, 5vw, 3.25rem); color: var(--lbs-cyan); line-height: 1.05; }

/* ---------- Differentiator strip ---------- */
.lbs-scope .diff-strip { background: var(--lbs-dark); padding: 2rem 0; }
.lbs-scope .diff-strip__inner { max-width: var(--lbs-maxw); margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lbs-scope .diff-item { text-align: center; padding: 0 1rem; }
.lbs-scope .diff-item:not(:last-child) { border-right: 1px solid var(--lbs-border); }
.lbs-scope .diff-item .diff-label { font-family: var(--lbs-font-display); font-size: 1.05rem; color: var(--lbs-cyan); letter-spacing: .06em; display: block; }
.lbs-scope .diff-item .diff-text { font-size: .9rem; color: var(--lbs-muted); margin-top: .25rem; }

/* ---------- Steps ---------- */
.lbs-scope .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.lbs-scope .step { text-align: center; }
.lbs-scope .step i { font-size: 2.2rem; color: var(--lbs-cyan); }
.lbs-scope .step h3 { font-size: 1.4rem; margin: .75rem 0 .5rem; }
.lbs-scope .step p { color: var(--lbs-muted); font-size: .92rem; }

/* ---------- Pricing ---------- */
.lbs-scope .price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: stretch; }
.lbs-scope .price-card { background: var(--lbs-mid); border: 1px solid var(--lbs-border); border-radius: var(--lbs-radius); padding: 2.25rem; display: flex; flex-direction: column; }
.lbs-scope .price-card--pro { border-color: var(--lbs-cyan); box-shadow: 0 0 0 1px var(--lbs-cyan), 0 18px 50px rgba(0,0,0,.35); }
.lbs-scope .badge { display: inline-block; font-family: var(--lbs-font-display); font-size: 13px; letter-spacing: 0.12em; padding: 4px 14px; border-radius: 999px; text-transform: uppercase; margin-bottom: 1rem; align-self: flex-start; }
.lbs-scope .badge--gold { background: rgba(201,146,42,0.15); color: var(--lbs-gold); border: 1px solid rgba(201,146,42,0.4); }
.lbs-scope .badge--cyan { background: var(--lbs-cyan); color: #fff; }
.lbs-scope .price-amt { font-family: var(--lbs-font-display); font-size: 3.5rem; color: var(--lbs-white); line-height: 1; }
.lbs-scope .price-amt--sm { font-size: 2.6rem; color: var(--lbs-gold); }
.lbs-scope .price-note { font-size: 14px; color: var(--lbs-muted); }
.lbs-scope .price-build { font-size: 1rem; color: var(--lbs-gold); }
.lbs-scope .price-plus { font-family: var(--lbs-font-display); font-size: 1.5rem; color: var(--lbs-muted); }
.lbs-scope .feature-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .65rem; }
.lbs-scope .feature-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--lbs-offwhite); }
.lbs-scope .feature-list li i { color: var(--lbs-cyan); flex-shrink: 0; margin-top: .15rem; }
.lbs-scope .feature-list--neg li i { color: var(--lbs-muted); }
.lbs-scope .feature-list ul { margin: .4rem 0 0 1.4rem; display: flex; flex-direction: column; gap: .35rem; list-style: disc; }
.lbs-scope .feature-list ul li { display: list-item; font-size: .88rem; color: var(--lbs-muted); }
.lbs-scope .price-card .btn-primary, .lbs-scope .price-card .btn-secondary { margin-top: auto; }
.lbs-scope .muted-head { font-family: var(--lbs-font-display); color: var(--lbs-muted); font-size: 1rem; letter-spacing: .08em; margin: 1rem 0 .5rem; }

/* ---------- CTA banner ---------- */
.lbs-scope .cta-banner { background: var(--lbs-cyan); padding: 4rem 0; text-align: center; }
.lbs-scope .cta-banner h2 { color: var(--lbs-white); font-size: clamp(2.2rem, 6vw, 3rem); }
.lbs-scope .cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin: 1rem auto 2rem; max-width: 620px; }

/* ---------- Pills ---------- */
.lbs-scope .pill-grid { display: flex; flex-wrap: wrap; gap: .75rem; }
.lbs-scope .pill { display: inline-block; border: 1px solid var(--lbs-border); border-radius: 999px; padding: 8px 18px; font-size: .9rem; color: var(--lbs-offwhite); background: var(--lbs-dark); transition: all .2s ease; }
.lbs-scope .pill:hover { background: var(--lbs-cyan); color: #fff; border-color: var(--lbs-cyan); }

/* ---------- Portfolio ---------- */
.lbs-scope .portfolio-card { background: var(--lbs-mid); border: 1px solid var(--lbs-border); border-radius: var(--lbs-radius); overflow: hidden; display: flex; flex-direction: column; }
.lbs-scope .portfolio-card__thumb { aspect-ratio: 16 / 10; background: linear-gradient(135deg, #1a2232 0%, #0e0e0e 100%); display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; border-bottom: 1px solid var(--lbs-border); }
.lbs-scope .portfolio-card__thumb span { font-family: var(--lbs-font-display); font-size: 2rem; color: var(--lbs-cyan); letter-spacing: .04em; line-height: 1.05; }
.lbs-scope .portfolio-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.lbs-scope .portfolio-card__name { font-size: 1.6rem; margin: .5rem 0 .25rem; }
.lbs-scope .portfolio-card__genre { font-family: var(--lbs-font-display); color: var(--lbs-gold); font-size: .95rem; letter-spacing: .08em; }
.lbs-scope .portfolio-card__bio { color: var(--lbs-muted); font-size: .92rem; margin: .85rem 0 1.25rem; }
.lbs-scope .portfolio-card__link { margin-top: auto; font-weight: 500; display: inline-flex; gap: .35rem; align-items: center; }

/* ---------- Forms hub cards ---------- */
.lbs-scope .formhub-card { background: var(--lbs-mid); border: 1px solid var(--lbs-border); border-radius: var(--lbs-radius); padding: 2.25rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; }
.lbs-scope .formhub-card__icon { font-size: 2.6rem; color: var(--lbs-cyan); }
.lbs-scope .formhub-card h2 { font-size: 1.9rem; margin-bottom: .25rem; }
.lbs-scope .formhub-card .badge { margin-bottom: .5rem; }
.lbs-scope .formhub-card p { color: var(--lbs-offwhite); font-size: .95rem; }

/* ---------- FAQ ---------- */
.lbs-scope .faq { display: flex; flex-direction: column; gap: .75rem; max-width: 820px; margin: 0 auto; }
.lbs-scope .faq details { background: var(--lbs-mid); border: 1px solid var(--lbs-border); border-radius: var(--lbs-radius); padding: 0; }
.lbs-scope .faq summary { cursor: pointer; list-style: none; padding: 1.1rem 1.4rem; font-family: var(--lbs-font-display); font-size: 1.25rem; color: var(--lbs-white); letter-spacing: .03em; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.lbs-scope .faq summary::-webkit-details-marker { display: none; }
.lbs-scope .faq summary::after { content: "+"; color: var(--lbs-cyan); font-size: 1.5rem; }
.lbs-scope .faq details[open] summary::after { content: "\2013"; }
.lbs-scope .faq details p { padding: 0 1.4rem 1.3rem; color: var(--lbs-offwhite); font-size: .96rem; }

/* ---------- Utility ---------- */
.lbs-scope .note-block { background: var(--lbs-mid); border: 1px solid var(--lbs-border); border-radius: var(--lbs-radius); padding: 1.5rem; font-size: .98rem; color: var(--lbs-offwhite); }
.lbs-scope .contact-line { color: var(--lbs-gold); font-family: var(--lbs-font-display); letter-spacing: .05em; font-size: 1.1rem; }
.lbs-scope .mt-1 { margin-top: 1rem; } .lbs-scope .mt-2 { margin-top: 2rem; } .lbs-scope .mb-1 { margin-bottom: 1rem; }
.lbs-scope .text-gold { color: var(--lbs-gold); } .lbs-scope .text-cyan { color: var(--lbs-cyan); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .lbs-scope .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lbs-scope .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .lbs-scope .section { padding: 3rem 0; }
  .lbs-scope .container, .lbs-scope .lbs-hero__inner, .lbs-scope .diff-strip__inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .lbs-scope .grid-2, .lbs-scope .grid-3, .lbs-scope .grid-4,
  .lbs-scope .price-grid, .lbs-scope .steps, .lbs-scope .split, .lbs-scope .diff-strip__inner { grid-template-columns: 1fr; }
  .lbs-scope .diff-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--lbs-border); padding-bottom: 1rem; }
  .lbs-scope .formhub-card { grid-template-columns: 1fr; text-align: left; }
  .lbs-scope .btn-row { flex-direction: column; }
  .lbs-scope .btn-row .btn-primary, .lbs-scope .btn-row .btn-secondary, .lbs-scope .btn-row .btn-dark { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .lbs-scope * { transition: none !important; }
}
