/* ============================================================================
   Lekhapal — marketing site brand theme
   Loaded AFTER style.css so it overrides the Bootstrap template theme.
   First pass: brand colours + Geist typography + button/link/focus polish.
   Mirrors the app's design tokens (resources/ts/src/assets/lekhapal/tokens.css)
   so the website, login and dashboard read as one product.
   ============================================================================ */

:root {
  /* Brand — Lekhapal cobalt (from logo) */
  --lp-brand-50:  #ecf0fb;
  --lp-brand-100: #d6dff7;
  --lp-brand-200: #abbcef;
  --lp-brand-300: #7e98e5;
  --lp-brand-400: #4f72d9;
  --lp-brand-500: #2c50c8;
  --lp-brand-600: #1e3fb0;  /* primary action — matches app --accent */
  --lp-brand-700: #182f8a;
  --lp-brand-800: #122365;
  --lp-brand-900: #0c1845;
  --lp-sky-400:   #2ea4dc;  /* secondary brand blue from wordmark */

  /* Type — same families the app loads from Google Fonts */
  --lp-font-sans:  'Geist', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --lp-font-serif: 'Instrument Serif', Georgia, serif;
}

/* ── Bootstrap theme variable overrides (light) ───────────────────────────── */
:root,
[data-bs-theme="light"] {
  --bs-primary: var(--lp-brand-600);
  --bs-primary-rgb: 30, 63, 176;                 /* fixes the stray cyan rgb */
  --bs-primary-text-emphasis: var(--lp-brand-700);
  --bs-primary-bg-subtle: var(--lp-brand-50);
  --bs-primary-border-subtle: var(--lp-brand-200);

  --bs-link-color: var(--lp-brand-600);
  --bs-link-color-rgb: 30, 63, 176;
  --bs-link-hover-color: var(--lp-brand-700);
  --bs-link-hover-color-rgb: 24, 47, 138;

  /* Align semantic colours with the app's palette */
  --bs-success: #059669; --bs-success-rgb: 5, 150, 105;
  --bs-warning: #d97706; --bs-warning-rgb: 217, 119, 6;
  --bs-danger:  #dc2626; --bs-danger-rgb: 220, 38, 38;
  --bs-info:    var(--lp-sky-400); --bs-info-rgb: 46, 164, 220;

  /* Typography */
  --bs-body-font-family: var(--lp-font-sans);
  --bs-heading-color: #161a23;
}

[data-bs-theme="dark"] {
  --bs-primary: var(--lp-brand-600);
  --bs-primary-rgb: 30, 63, 176;
  --bs-link-color: #9fb6ff;
  --bs-link-color-rgb: 159, 182, 255;
  --bs-link-hover-color: #bcd2ff;
  --bs-link-hover-color-rgb: 188, 210, 255;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
body {
  font-family: var(--lp-font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.006em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--lp-font-sans) !important;
  font-weight: 700;
  letter-spacing: -0.022em;
}
.display-1, .display-2, .display-3, .display-4 { letter-spacing: -0.032em; }

/* Editorial serif accent, available as a utility (e.g. on a highlighted word) */
.lp-serif {
  font-family: var(--lp-font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

::selection { background: rgba(30, 63, 176, 0.16); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn { font-family: var(--lp-font-sans); font-weight: 600; }

.btn-primary {
  --bs-btn-bg: var(--lp-brand-600);
  --bs-btn-border-color: var(--lp-brand-600);
  --bs-btn-hover-bg: var(--lp-brand-700);
  --bs-btn-hover-border-color: var(--lp-brand-700);
  --bs-btn-active-bg: #152a7d;
  --bs-btn-active-border-color: #152a7d;
  --bs-btn-disabled-bg: var(--lp-brand-600);
  --bs-btn-disabled-border-color: var(--lp-brand-600);
  box-shadow: 0 1px 0 rgba(15, 20, 36, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background-color 0.15s, box-shadow 0.18s, transform 0.06s;
}
.btn-primary:hover { box-shadow: 0 8px 22px rgba(30, 63, 176, 0.30); }
.btn-primary:active { transform: translateY(1px); }

.btn-outline-primary {
  --bs-btn-color: var(--lp-brand-600);
  --bs-btn-border-color: var(--lp-brand-200);
  --bs-btn-hover-bg: var(--lp-brand-600);
  --bs-btn-hover-border-color: var(--lp-brand-600);
  --bs-btn-active-bg: var(--lp-brand-700);
}

/* Soft "accent-soft" pill the app uses for secondary actions */
.btn-soft-primary {
  --bs-btn-color: var(--lp-brand-700);
  --bs-btn-bg: var(--lp-brand-50);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--lp-brand-700);
  --bs-btn-hover-bg: var(--lp-brand-100);
  --bs-btn-hover-border-color: transparent;
  font-weight: 600;
}

/* ── Focus rings, links, badges ───────────────────────────────────────────── */
.btn:focus-visible,
.form-control:focus,
.form-select:focus,
.nav-link:focus-visible {
  border-color: var(--lp-brand-600);
  box-shadow: 0 0 0 0.2rem rgba(30, 63, 176, 0.18) !important;
  outline: 0;
}

a { text-decoration-thickness: 1px; }

.badge.bg-primary,
.badge.text-bg-primary { background-color: var(--lp-brand-600) !important; }

.text-primary { color: var(--lp-brand-600) !important; }
.bg-primary { background-color: var(--lp-brand-600) !important; }
.border-primary { border-color: var(--lp-brand-600) !important; }
.link-primary { color: var(--lp-brand-600) !important; }
.link-primary:hover { color: var(--lp-brand-700) !important; }

/* ============================================================================
   Premium dark sections — navy cobalt gradient + cyan glow.
   Mirrors the sign-in brand panel. Applies to every FULL .bg-dark section
   (hero, footer, CTA boxes, page heroes), but NOT the subtle bg-opacity tints
   (image frames / icon tiles) or video overlays.
   ============================================================================ */
.bg-dark:not([class*="bg-opacity"]):not(.bg-overlay) {
  background-color: #0c1845 !important;
  background-image:
    radial-gradient(120% 85% at 88% 6%, rgba(46, 164, 220, 0.20), transparent 55%),
    linear-gradient(135deg, #0c1845 0%, #122365 46%, #1e3fb0 100%) !important;
}
/* On dark, the cobalt primary is too low-contrast — lift accents to light. */
.bg-dark .text-primary,
[data-bs-theme="dark"] .bg-dark .text-primary { color: #9fb6ff !important; }

/* ── Navbar ───────────────────────────────────────────────────────────────
   The scrolled (sticky) bar becomes a premium deep navy with blur, not the
   default near-black. Beats the product pages' .header-sticky override. */
header.header-sticky-on {
  background-color: rgba(11, 21, 60, 0.95) !important;
  /* Faint cobalt→sky diagonal tint ties the glass bar to the hero gradient. */
  background-image:
    linear-gradient(120deg, rgba(46, 164, 220, 0.10) 0%, rgba(30, 63, 176, 0.07) 42%, transparent 78%) !important;
  -webkit-backdrop-filter: saturate(165%) blur(16px);
  backdrop-filter: saturate(165%) blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
  /* Soft drop shadow lifts the bar off the page; inset hairline = glass edge. */
  box-shadow: 0 10px 30px -14px rgba(6, 14, 40, 0.60),
              inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
.navbar .nav-link { font-weight: 500; }
.navbar-brand-item { height: 34px; width: auto; }
header.header-sticky-on .navbar-brand-item { height: 32px; }

/* Navbar CTAs — the header always sits on a dark background, so the brand
   cobalt button blends in. Use a white solid (with a cobalt arrow) + a clean
   ghost so both read clearly and never collapse into the navy. */
.lp-nav-cta,
.lp-nav-cta:visited {
  background: #ffffff;
  color: #15245b !important;
  border: 1px solid #ffffff;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.lp-nav-cta:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #15245b !important;
}
.lp-nav-cta i { color: #15245b; }

.lp-nav-ghost,
.lp-nav-ghost:visited {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.lp-nav-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff !important;
}
.lp-nav-ghost i { color: #ffffff; }

/* ── Footer polish ────────────────────────────────────────────────────────
   Its own lighter, refined background — the global .bg-dark gradient reads too
   heavy at footer height. Softer navy + faint cobalt/sky glow + top hairline. */
footer.bg-dark {
  background-color: #15245b !important;
  background-image:
    radial-gradient(65% 60% at 100% 0%, rgba(46, 164, 220, 0.13), transparent 60%),
    radial-gradient(60% 70% at 0% 100%, rgba(30, 63, 176, 0.20), transparent 62%),
    linear-gradient(180deg, #182a66 0%, #0f1c49 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
/* "Have questions?" help card — glass panel + WhatsApp icon tile + button. */
.lp-help-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.lp-help-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 1.45rem; color: #fff;
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 18px -8px rgba(37, 211, 102, 0.55);
  flex-shrink: 0;
}
.lp-help-card .text-body { color: rgba(255, 255, 255, 0.62) !important; }
.lp-whatsapp-btn,
.lp-whatsapp-btn:visited {
  background: #fff;
  border: 1px solid #fff;
  color: #15245b; font-weight: 600;
  padding: 0.5rem 1.15rem;
  transition: background 0.15s, color 0.15s;
}
.lp-whatsapp-btn:hover {
  background: rgba(255, 255, 255, 0.88);
  color: #15245b;
}

footer.bg-dark h6 {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
footer.bg-dark .nav-link {
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.14s;
}
footer.bg-dark .nav-link:hover { color: #fff; }
footer.bg-dark hr { border-top: 1px solid rgba(255, 255, 255, 0.12); opacity: 1; }
footer.bg-dark .text-body { color: rgba(255, 255, 255, 0.6) !important; }
footer.bg-dark .btn-icon.btn-secondary {
  --bs-btn-bg: rgba(255, 255, 255, 0.08);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.16);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
}

/* ============================================================================
   Premium surfaces — LIGHT + DARK parity
   ============================================================================ */

/* Dark mode → the app's deep-navy palette (not Bootstrap's default gray-black),
   so dark mode reads as intentional and premium. Mirrors tokens.css .theme-dark. */
[data-bs-theme="dark"] {
  --bs-body-bg: #0c0f17;
  --bs-body-bg-rgb: 12, 15, 23;
  --bs-secondary-bg: #141926;        /* elevated surfaces / cards */
  --bs-secondary-bg-rgb: 20, 25, 38;
  --bs-tertiary-bg: #1a2030;
  --bs-tertiary-bg-rgb: 26, 32, 48;
  --bs-body-color: #e7ecf3;
  --bs-body-color-rgb: 231, 236, 243;
  --bs-secondary-color: rgba(231, 236, 243, 0.72);
  --bs-heading-color: #eef2f8;
  --bs-emphasis-color: #ffffff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-border-color: rgba(255, 255, 255, 0.09);
  --bs-border-color-translucent: rgba(255, 255, 255, 0.10);
}

/* Cards → house "border-only" treatment (the template ships them border-less
   and shadow-reliant). Works in both modes: light = white + hairline border,
   dark = elevated navy surface + subtle white border. */
.card {
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color);
  --bs-card-border-radius: 14px;
  --bs-card-inner-border-radius: 13px;
}
[data-bs-theme="dark"] .card { --bs-card-bg: #141926; }

/* Soften the loud coloured drop-shadow the template puts on framed images,
   and kill coloured shadows entirely in dark mode (they read as muddy halos). */
.shadow-primary-lg { box-shadow: 0 22px 60px -20px rgba(30, 63, 176, 0.26) !important; }
.shadow-primary { box-shadow: 0 10px 30px -12px rgba(30, 63, 176, 0.20) !important; }
[data-bs-theme="dark"] .shadow-primary-lg,
[data-bs-theme="dark"] .shadow-primary {
  box-shadow: 0 22px 60px -24px rgba(0, 0, 0, 0.55) !important;
}

/* ── Homepage hero headline — editorial display treatment ─────────────────── */
.lp-hero-h1 {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
/* Highlight the accent phrase with a bright periwinkle→cyan gradient so it pops
   off the navy instead of blending (the flat periwinkle was too low-contrast). */
.lp-hero-h1 .text-primary {
  background: linear-gradient(100deg, #b9ccff 0%, #5fd0ef 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}
/* The glass screenshot frame under the hero — crisper edge in both modes. */
.bg-blur.border-white { border-color: rgba(255, 255, 255, 0.14) !important; }

/* ============================================================================
   Homepage hero — depth, eyebrow, chips, CTAs, trust strip
   ============================================================================ */
.lp-hero { position: relative; isolation: isolate; }
/* Faint grid texture, faded toward the edges — the "premium vs template" cue. */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(115% 95% at 50% 0%, #000 38%, transparent 80%);
          mask-image: radial-gradient(115% 95% at 50% 0%, #000 38%, transparent 80%);
}
.lp-hero > * { position: relative; z-index: 1; }

/* A — Aurora drift: soft cobalt/sky light slowly floating behind the hero.
   Sits above the navy gradient, below the grid texture. Transform + opacity
   only, so the browser composites it on the GPU — smooth and cheap on low-end
   mobile (no paint per frame). */
.lp-hero::after {
  content: "";
  position: absolute;
  inset: -25% -12% auto -12%;
  height: 135%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(38% 50% at 22% 32%, rgba(46, 164, 220, 0.22), transparent 70%),
    radial-gradient(42% 55% at 80% 16%, rgba(95, 130, 255, 0.20), transparent 72%);
  filter: blur(10px);
  will-change: transform, opacity;
  animation: lp-aurora 18s ease-in-out infinite alternate;
}
@keyframes lp-aurora {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1);    opacity: 0.82; }
  50%  { transform: translate3d(2%, 2%, 0)   scale(1.08); opacity: 1; }
  100% { transform: translate3d(3%, -2%, 0)  scale(1.05); opacity: 0.9; }
}

/* F — Product frame glow: a slow, soft cobalt→sky pulse on the screenshot card
   so the eye lands on the real product, not the background. */
.lp-hero-shot { animation: lp-shot-glow 7.5s ease-in-out infinite; }
@keyframes lp-shot-glow {
  0%, 100% { box-shadow: 0 22px 60px -20px rgba(30, 63, 176, 0.26); }
  50%      { box-shadow: 0 30px 84px -18px rgba(46, 164, 220, 0.42); }
}

/* Respect users who ask for less motion — hold everything still. */
@media (prefers-reduced-motion: reduce) {
  .lp-hero::after,
  .lp-hero-shot,
  .lp-eyebrow-dot { animation: none !important; }
  .lp-hero::after { opacity: 0.9; transform: none; }
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.lp-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: lp-pulse 2.4s ease-out infinite;
}
@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.lp-hero-chips { list-style: none; padding: 0; }
.lp-hero-chips .list-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-hero-chips .list-inline-item i { font-size: 1rem; }

/* Hero CTAs — high contrast on the navy gradient, never collapse into it.
   (Brand cobalt buttons live on the LIGHT sections, not here.) */
.lp-cta,
.lp-cta:visited {
  background: #ffffff;
  color: #0c1845 !important;
  border: 1px solid #ffffff;
  font-weight: 600;
  padding: 0.72rem 1.45rem;
  border-radius: 9px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.12s, box-shadow 0.18s, background 0.15s;
}
.lp-cta:hover {
  background: #eef2ff;
  color: #0c1845 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.30);
}
.lp-cta-ghost,
.lp-cta-ghost:visited {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  font-weight: 600;
  padding: 0.72rem 1.45rem;
  border-radius: 9px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}
.lp-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Trust strip */
.lp-trust-badge { height: 42px; width: auto; background: #fff; border-radius: 8px; padding: 5px 9px; }
.lp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.74);
}
.lp-trust-item i { color: #9fb6ff; font-size: 0.95rem; }
.lp-trust-sep { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.18); }

/* ── Why Lekhapal — editorial value cards ───────────────────────────────────
   Bordered cards that lift on hover with a cobalt-tinted shadow + icon shift,
   so the section reads as a designed grid, not four floating icons. */
.lp-why-card {
  border-radius: 14px;
  background: var(--bs-body-bg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lp-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 63, 176, 0.32) !important;
  box-shadow: 0 18px 40px -22px rgba(30, 63, 176, 0.45);
}
.lp-why-card .lp-feat-icon { transition: transform .25s ease; }
.lp-why-card:hover .lp-feat-icon { transform: scale(1.06); }
/* Payments row — sits under a hairline divider so it reads as a footnote. */
.lp-why-payments { border-top: 1px solid var(--bs-border-color); }

/* ── Getting-started stepper ────────────────────────────────────────────────
   Numbered cobalt→sky badges joined by a faint connector line on desktop —
   the standard "how it works" pattern, clean and compact. */
.lp-step-num {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem; font-weight: 600; line-height: 1;
  color: #fff;
  background: linear-gradient(135deg, #1e3fb0, #2ea4dc);
  box-shadow: 0 10px 22px -10px rgba(30, 63, 176, 0.55);
  position: relative; z-index: 1;
}
.lp-steps { position: relative; }
@media (min-width: 768px) {
  /* Connector line behind the three numbers (col centers sit at 1/6, 1/2, 5/6). */
  .lp-steps::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg,
      transparent, var(--bs-border-color) 12%,
      var(--bs-border-color) 88%, transparent);
    z-index: 0;
  }
}
/* App badges sit under a hairline divider — a quiet footnote to the steps. */
.lp-steps-apps { border-top: 1px solid var(--bs-border-color); }

/* ── Business-type cards — real photo header ────────────────────────────────
   Image cover at the top, content below; lift + image zoom on hover. */
.lp-biz-card {
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lp-biz-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 63, 176, 0.32) !important;
  box-shadow: 0 18px 40px -22px rgba(30, 63, 176, 0.45);
}
.lp-biz-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bs-secondary-bg);
}
.lp-biz-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.lp-biz-card:hover .lp-biz-media img { transform: scale(1.05); }

/* ── "One connected platform" band — soft diagonal glow over the grey ───────
   Faint cobalt + sky radials in opposite corners give the flat bg-secondary
   subtle depth, echoing the hero aurora without any motion. */
.lp-connected {
  background-image:
    radial-gradient(50% 42% at 88% 2%, rgba(46, 164, 220, 0.08), transparent 60%),
    radial-gradient(46% 40% at 5% 98%, rgba(30, 63, 176, 0.06), transparent 62%) !important;
}
[data-bs-theme="dark"] .lp-connected {
  background-image:
    radial-gradient(50% 42% at 88% 2%, rgba(46, 164, 220, 0.14), transparent 60%),
    radial-gradient(46% 40% at 5% 98%, rgba(95, 130, 255, 0.12), transparent 62%) !important;
}

/* ============================================================================
   MARKETING SWEEP — Phase A (see WEBSITE_REVAMP.md)
   ============================================================================ */

/* A1 — hide the template's decorative gradient blur-blobs (smeared shapes that
   read as "template"). The hero/footer keep their own gradient + glow + grid. */
img[src*="blur-decoration"] { display: none !important; }

/* A2 — section eyebrow: small-caps cobalt label above a section headline.
   Apply in blade as <span class="lp-eyebrow-line">…</span>. */
.lp-eyebrow-line {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lp-brand-600);
  margin-bottom: 0.6rem;
}
[data-bs-theme="dark"] .lp-eyebrow-line { color: #9fb6ff; }

/* A5 — card hover micro-interaction (subtle lift + brand border), both modes. */
.card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-brand-200) !important;
  box-shadow: 0 14px 34px -16px rgba(30, 63, 176, 0.22);
}
[data-bs-theme="dark"] .card:hover {
  border-color: rgba(159, 182, 255, 0.26) !important;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}

/* ============================================================================
   MARKETING SWEEP — Stage 1 (section polish, see WEBSITE_REVAMP.md §3)
   ============================================================================ */

/* Section tint — the template's light-mode .bg-secondary is a pale SKY-BLUE
   (rgba(160,210,245,.25)) left over from its cyan accent. Re-tint it to a soft
   COBALT wash so alternating sections match our brand. (Dark mode keeps its own
   elevated #141926 panel via the template's [data-bs-theme=dark] .bg-secondary,
   which has higher specificity and wins — so this only affects light mode.) */
.bg-secondary { background-color: rgba(30, 63, 176, 0.05) !important; }

/* FAQ section — polished & on-brand. Replaces the template's flashy 4-stop
   navy→sky-cyan→white gradient with a restrained near-white surface carrying a
   soft cobalt/cyan glow at the top (echoes the hero), plus clean branded
   accordion cards with a cobalt open-state. */
#faq-sec {
  background:
    radial-gradient(70% 45% at 50% 0%, rgba(46, 164, 220, 0.10) 0%, rgba(30, 63, 176, 0.07) 38%, rgba(30, 63, 176, 0) 72%),
    #f7f9fe !important;
}
[data-bs-theme="dark"] #faq-sec {
  background:
    radial-gradient(70% 45% at 50% 0%, rgba(46, 164, 220, 0.12) 0%, rgba(30, 63, 176, 0.16) 36%, rgba(12, 15, 23, 0) 72%),
    var(--bs-body-bg) !important;
}

/* Accordion cards */
#faq-sec .accordion.accordion-bg-body-light .accordion-item {
  background: #fff !important;
  border: 1px solid var(--lp-brand-100, #d6dff7) !important;
  border-radius: 14px;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  padding: 0.35rem 0.6rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
#faq-sec .accordion.accordion-bg-body-light .accordion-item:hover {
  border-color: var(--lp-brand-200, #abbcef) !important;
}
#faq-sec .accordion.accordion-bg-body-light .accordion-item:has(.accordion-button[aria-expanded="true"]) {
  border-color: var(--lp-brand-300, #8ba0e8) !important;
  box-shadow: 0 14px 32px -18px rgba(30, 63, 176, 0.28);
}
#faq-sec .accordion.accordion-bg-body-light .accordion-button {
  font-size: 1.05rem !important;
  font-weight: 600;
  padding: 1rem 0.9rem;
}
#faq-sec .accordion.accordion-bg-body-light .accordion-button[aria-expanded="true"] {
  color: var(--lp-brand-700, #1a3286) !important;
}
#faq-sec .accordion-body { padding: 0 0.9rem 0.9rem; }

/* Dark-mode accordion cards */
[data-bs-theme="dark"] #faq-sec .accordion.accordion-bg-body-light .accordion-item {
  background: var(--bs-secondary-bg) !important;
  border-color: rgba(159, 182, 255, 0.16) !important;
  box-shadow: none;
}
[data-bs-theme="dark"] #faq-sec .accordion.accordion-bg-body-light .accordion-item:hover {
  border-color: rgba(159, 182, 255, 0.28) !important;
}
[data-bs-theme="dark"] #faq-sec .accordion.accordion-bg-body-light .accordion-item:has(.accordion-button[aria-expanded="true"]) {
  border-color: rgba(159, 182, 255, 0.40) !important;
}
[data-bs-theme="dark"] #faq-sec .accordion.accordion-bg-body-light .accordion-button { color: rgba(231, 236, 243, 0.92) !important; }
[data-bs-theme="dark"] #faq-sec .accordion.accordion-bg-body-light .accordion-button[aria-expanded="true"] { color: #9fb6ff !important; }

/* Heading accent — cobalt in light, periwinkle in dark so it stays legible on
   dark sections (bg-secondary/bg-dark). Use instead of .text-primary on section
   headlines: <span class="lp-accent">…</span>. */
.lp-accent { color: var(--lp-brand-600); }
[data-bs-theme="dark"] .lp-accent { color: #9fb6ff; }

/* Restrained feature-icon tile — replaces the template's rainbow circles with a
   consistent cobalt-tinted rounded square. Apply on the icon wrapper:
   <div class="icon-lg lp-feat-icon flex-shrink-0"><i class="bi …"></i></div>. */
.lp-feat-icon {
  background: var(--lp-brand-50) !important;
  color: var(--lp-brand-600) !important;
  border-radius: 14px !important;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
[data-bs-theme="dark"] .lp-feat-icon {
  background: rgba(159, 182, 255, 0.12) !important;
  color: #9fb6ff !important;
}
/* Lift + fill the icon when its feature row is hovered (desktop). */
@media (hover: hover) {
  .lp-feat-row:hover .lp-feat-icon {
    background: var(--lp-brand-600) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
  }
}

/* ---- Feature tabs (Stage 1.2) ----------------------------------------------
   The active-pill fill span in the blade is .nav-bg-primary, but the template
   only styles .nav-bg-primary-grad (a purple gradient) — so the active fill was
   effectively unstyled. Style the real span with a cobalt fill + give idle pills
   a light border so they read as buttons. */
.nav-pills-primary-grad .nav-link { border: 1px solid var(--lp-brand-100, #d7e0f7); }
.nav-pills-primary-grad .nav-link .nav-bg-primary {
  position: absolute; inset: 0; height: 100%; width: 100%;
  background: linear-gradient(180deg, #2c50c8 0%, #1e3fb0 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.nav-pills-primary-grad .nav-link:hover .nav-bg-primary,
.nav-pills-primary-grad .nav-link.active .nav-bg-primary { opacity: 1 !important; }
.nav-pills-primary-grad .nav-link.active { border-color: transparent; }
[data-bs-theme="dark"] .nav-pills-primary-grad .nav-link {
  border-color: rgba(159, 182, 255, 0.16);
  color: rgba(231, 236, 243, 0.85);
}

/* Consistent cobalt screenshot frame (used by the tab panes + steps swiper).
   Template's .bg-secondary-grad ended in off-brand cyan — re-tint to cobalt. */
.bg-secondary-grad {
  background: linear-gradient(135deg, rgba(30, 63, 176, 0.10) 0%, rgba(46, 164, 220, 0.07) 100%) !important;
  border: 1px solid rgba(30, 63, 176, 0.08);
}
[data-bs-theme="dark"] .bg-secondary-grad {
  background: linear-gradient(135deg, rgba(159, 182, 255, 0.10) 0%, rgba(46, 164, 220, 0.05) 100%) !important;
  border-color: rgba(159, 182, 255, 0.12);
}

/* Per-tab highlight stat — big accent word/number + caption, uniform across panes. */
.lp-tab-stat { display: flex; align-items: center; }
.lp-tab-stat .lp-tab-stat-num {
  font-size: 1.9rem; font-weight: 700; line-height: 1.1; margin: 0;
  color: var(--lp-brand-600);
}
[data-bs-theme="dark"] .lp-tab-stat .lp-tab-stat-num { color: #9fb6ff; }
.lp-tab-stat p { margin: 0; }

/* ---- Pricing (Stage 1.5) ----------------------------------------------------
   Cobalt business-type selector pills + on-brand gradient (template's
   .bg-primary-grad was cyan-leaning). */
.pricing-type-nav .nav-link {
  border: 1px solid var(--lp-brand-100, #d6dff7);
  color: var(--lp-brand-600);
  font-weight: 600;
  background: transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pricing-type-nav .nav-link:hover { background: var(--lp-brand-50); }
.pricing-type-nav .nav-link.active {
  background: var(--lp-brand-600);
  border-color: var(--lp-brand-600);
  color: #fff;
}
[data-bs-theme="dark"] .pricing-type-nav .nav-link {
  border-color: rgba(159, 182, 255, 0.18);
  color: rgba(231, 236, 243, 0.85);
}
[data-bs-theme="dark"] .pricing-type-nav .nav-link:hover { background: rgba(159, 182, 255, 0.10); }
[data-bs-theme="dark"] .pricing-type-nav .nav-link.active { color: #fff; }

.bg-primary-grad {
  background: linear-gradient(120deg, var(--lp-brand-600) 0%, var(--lp-brand-500) 100%) !important;
}

/* ---- Stat numbers + chips (Stage 2.1 / 2.5 / 2.6) ---- */
.lp-stat-num {
  font-size: 1.9rem; font-weight: 700; line-height: 1.1;
  color: var(--lp-brand-600);
}
[data-bs-theme="dark"] .lp-stat-num { color: #9fb6ff; }
@media (min-width: 992px) {
  .lp-stat-cell:not(:last-child) { border-right: 1px solid rgba(30, 63, 176, 0.12); }
}
[data-bs-theme="dark"] .lp-stat-cell:not(:last-child) { border-right-color: rgba(159, 182, 255, 0.14); }

.lp-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.45rem 0.9rem; border-radius: 999px;
  background: var(--lp-brand-50); color: var(--lp-brand-700, #1a3286);
  border: 1px solid var(--lp-brand-100, #d6dff7);
}
[data-bs-theme="dark"] .lp-chip {
  background: rgba(159, 182, 255, 0.10); color: #c8d4ff; border-color: rgba(159, 182, 255, 0.18);
}

/* Payment / integration logo chip — white container keeps third-party logos
   legible in both light and dark mode. */
.lp-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--lp-brand-100, #d6dff7);
  border-radius: 10px; padding: 0.5rem 0.9rem; height: 48px;
}
.lp-logo img { height: 24px; width: auto; object-fit: contain; }
[data-bs-theme="dark"] .lp-logo { border-color: rgba(255, 255, 255, 0.14); }

/* Hardware product thumbnail — white tile so product photos (light backgrounds)
   render cleanly in both themes; image contained, not cropped. */
.lp-hw-thumb {
  position: relative;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; height: 190px;
  border-bottom: 1px solid var(--lp-brand-100, #d6dff7);
}
.lp-hw-thumb img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
[data-bs-theme="dark"] .lp-hw-thumb { border-bottom-color: rgba(255, 255, 255, 0.10); }

/* ---- Hardware (Stage 2.3) — small badges (no node_modules edits) ---- */
.lp-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  background: var(--lp-brand-600); color: #fff;
}
.lp-badge-soft {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.65rem; border-radius: 999px;
  background: var(--lp-brand-50); color: var(--lp-brand-700, #1a3286);
  border: 1px solid var(--lp-brand-100, #d6dff7);
}
[data-bs-theme="dark"] .lp-badge-soft {
  background: rgba(159, 182, 255, 0.12); color: #c8d4ff; border-color: rgba(159, 182, 255, 0.18);
}

/* Install / VAT footnote under the pricing grid. */
.lp-price-note {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem;
  background: var(--lp-brand-50);
  color: var(--lp-brand-700, #1a3286);
  border: 1px solid var(--lp-brand-100, #d6dff7);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}
.lp-price-note .fw-semibold { color: inherit; }
[data-bs-theme="dark"] .lp-price-note {
  background: rgba(159, 182, 255, 0.10);
  color: #c8d4ff;
  border-color: rgba(159, 182, 255, 0.18);
}

/* ============================================================================
   PRICING — glassmorphism redesign (#pricing-info-section)
   ============================================================================ */
/* Clean, near-white backdrop (Stripe-style — content over decoration). */
#pricing-info-section { background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 55%) !important; }
[data-bs-theme="dark"] #pricing-info-section { background: var(--bs-body-bg) !important; }

/* Flat plan cards — white, 1px border, whisper shadow. */
#pricing-info-section .card {
  background: #ffffff !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  border: 1px solid #e7eaf3 !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#pricing-info-section .card:hover {
  transform: translateY(-4px);
  border-color: var(--lp-brand-200, #abbcef) !important;
  box-shadow: 0 16px 36px -20px rgba(30, 63, 176, 0.22) !important;
}
[data-bs-theme="dark"] #pricing-info-section .card {
  background: var(--bs-secondary-bg) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}
[data-bs-theme="dark"] #pricing-info-section .card:hover { border-color: rgba(159, 182, 255, 0.30) !important; }

/* Featured (recommended) card — emphasis via a cobalt border, not heavy effects. */
#pricing-info-section .lp-plan-featured {
  background: #ffffff !important;
  border: 1.5px solid var(--lp-brand-600) !important;
  box-shadow: 0 20px 44px -24px rgba(30, 63, 176, 0.30) !important;
}
[data-bs-theme="dark"] #pricing-info-section .lp-plan-featured {
  background: var(--bs-secondary-bg) !important;
  border-color: #9fb6ff !important;
}
@media (min-width: 992px) {
  #pricing-info-section .lp-plan-featured { transform: scale(1.03); z-index: 2; }
  #pricing-info-section .lp-plan-featured:hover { transform: scale(1.03) translateY(-4px); }
}

/* Unify the header/footer into the glass (kill template grad fills). */
#pricing-info-section .card-header,
#pricing-info-section .card-footer { background: transparent !important; border: 0 !important; }
#pricing-info-section .card-header { padding: 1.6rem 1.6rem 0 !important; }
#pricing-info-section .card-footer {
  padding: 1.2rem 1.6rem 1.6rem !important;
  border-top: 1px solid rgba(30, 63, 176, 0.10) !important;
}
[data-bs-theme="dark"] #pricing-info-section .card-footer { border-top-color: rgba(159, 182, 255, 0.14) !important; }

/* Price in brand cobalt. */
#pricing-info-section .plan-price { color: var(--lp-brand-700, #1a3286) !important; font-weight: 700; }
[data-bs-theme="dark"] #pricing-info-section .plan-price { color: #c8d4ff !important; }

/* Most Popular badge — clean cobalt pill on the featured card. */
.lp-popular-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #2c50c8, #1e3fb0);
  padding: 0.32rem 0.9rem; border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(30, 63, 176, 0.55);
  white-space: nowrap;
}

/* ---- Business-type selector → refined chips (hero-chip language) ---- */
#pricing-info-section .pricing-type-nav {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 0.55rem; margin: 0; padding: 0;
  background: transparent; border: 0;
}
#pricing-info-section .pricing-type-nav .nav-item { margin: 0; }
#pricing-info-section .pricing-type-nav .nav-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.05rem !important;
  border-radius: 999px !important;
  font-size: 0.9rem; font-weight: 500;
  color: var(--lp-brand-700, #1a3286) !important;
  background: #ffffff !important;
  border: 1px solid #e2e7f3 !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
#pricing-info-section .pricing-type-nav .nav-link i { font-size: 1rem; color: var(--lp-brand-600); transition: color 0.18s ease; }
#pricing-info-section .pricing-type-nav .nav-link:not(.active):hover {
  background: var(--lp-brand-50, #ecf0fb) !important;
  border-color: var(--lp-brand-200, #abbcef) !important;
}
#pricing-info-section .pricing-type-nav .nav-link.active {
  background: var(--lp-brand-600) !important;
  border-color: var(--lp-brand-600) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px -6px rgba(30, 63, 176, 0.5);
}
#pricing-info-section .pricing-type-nav .nav-link.active i { color: #fff; }
[data-bs-theme="dark"] #pricing-info-section .pricing-type-nav .nav-link {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  color: rgba(231, 236, 243, 0.9) !important;
  box-shadow: none;
}
[data-bs-theme="dark"] #pricing-info-section .pricing-type-nav .nav-link i { color: #9fb6ff; }
[data-bs-theme="dark"] #pricing-info-section .pricing-type-nav .nav-link:not(.active):hover {
  background: rgba(159, 182, 255, 0.10) !important;
  border-color: rgba(159, 182, 255, 0.30) !important;
}
[data-bs-theme="dark"] #pricing-info-section .pricing-type-nav .nav-link.active {
  background: var(--lp-brand-600) !important; border-color: var(--lp-brand-600) !important; color: #fff !important;
}
[data-bs-theme="dark"] #pricing-info-section .pricing-type-nav .nav-link.active i { color: #fff; }

/* ---- Billing toggle → compact light segmented control (secondary) ---- */
.lp-billing {
  position: relative;
  display: inline-flex;
  flex: none;
  padding: 4px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2e7f3;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.lp-billing-thumb {
  position: absolute;
  top: 4px; bottom: 4px; left: 0;
  width: 0; /* JS measures the active option and morphs to fit */
  border-radius: 999px;
  background: var(--lp-brand-600);
  box-shadow: 0 4px 10px -4px rgba(30, 63, 176, 0.5);
  transition: transform 0.32s cubic-bezier(0.34, 1.3, 0.5, 1), width 0.32s cubic-bezier(0.34, 1.3, 0.5, 1);
  z-index: 0;
}
.lp-billing-opt {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 0; background: transparent;
  padding: 0.42rem 0.95rem;
  font-weight: 600; font-size: 0.875rem;
  color: var(--lp-brand-700, #1a3286);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.lp-billing-opt.is-active { color: #fff; }
.lp-billing-tag {
  font-size: 0.66rem; font-weight: 700; line-height: 1.4;
  padding: 0.08rem 0.42rem; border-radius: 999px;
  background: var(--lp-brand-100, #d6dff7); color: var(--lp-brand-700, #1a3286);
  transition: background 0.2s ease, color 0.2s ease;
}
.lp-billing-opt.is-active .lp-billing-tag { background: rgba(255, 255, 255, 0.25); color: #fff; }

/* Panel tagline — light "eyebrow" pill matching the hero (live dot + text). */
.lp-plan-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lp-brand-700, #1a3286);
  background: var(--lp-brand-50, #ecf0fb);
  border: 1px solid var(--lp-brand-100, #d6dff7);
}
[data-bs-theme="dark"] .lp-plan-tagline {
  color: #c8d4ff;
  background: rgba(159, 182, 255, 0.10);
  border-color: rgba(159, 182, 255, 0.18);
}
[data-bs-theme="dark"] .lp-billing { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.10); }
[data-bs-theme="dark"] .lp-billing-opt { color: #c8d4ff; }
[data-bs-theme="dark"] .lp-billing-opt.is-active { color: #fff; }
[data-bs-theme="dark"] .lp-billing-tag { background: rgba(159, 182, 255, 0.18); color: #c8d4ff; }
[data-bs-theme="dark"] .lp-billing-opt.is-active .lp-billing-tag { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* ---- Compact density (less scrolling, more scannable) ---- */
#pricing-info-section .card-header { padding: 1.25rem 1.3rem 0 !important; }
#pricing-info-section .card-footer { padding: 0.85rem 1.3rem 1.25rem !important; }
#pricing-info-section .card-header h6 { font-size: 1rem; margin-bottom: 0.1rem !important; }

/* "Best for" qualifier under the plan name. */
.lp-plan-bestfor { font-size: 0.85rem; color: var(--bs-secondary-color); min-height: 1.2rem; }

/* Trust reassurance row above the install note. */
.lp-pricing-trust {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem 1.6rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--bs-heading-color, #1a2233);
}
.lp-pricing-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.lp-pricing-trust i { color: #16a34a; font-size: 1rem; }
[data-bs-theme="dark"] .lp-pricing-trust { color: rgba(231, 236, 243, 0.92); }
[data-bs-theme="dark"] .lp-pricing-trust i { color: #4ade80; }

/* Feature-list header ("Everything in X, plus:" / "What's included"). */
.lp-feat-head { font-size: 0.8rem; font-weight: 600; color: var(--bs-secondary-color); margin-bottom: 0.55rem; }
/* Usage-limits — label muted, value in prominent cobalt so the caps stand out. */
.lp-limits-head {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--bs-secondary-color); margin-bottom: 0.4rem;
}
.lp-limit-row { border: 0 !important; }
.lp-limit-val { font-weight: 700; color: var(--lp-brand-700, #1a3286); }
[data-bs-theme="dark"] .lp-limit-val { color: #c8d4ff; }
#pricing-info-section .plan-price { font-size: 1.85rem !important; }
#pricing-info-section .price-period { font-size: 0.9rem; }
#pricing-info-section .card-header > p.mb-0 { margin-top: 0.2rem; }
#pricing-info-section .card-header .btn {
  margin-top: 0.9rem !important;
  padding-top: 0.55rem !important; padding-bottom: 0.55rem !important;
  border-radius: 11px;
}
/* Compact feature + limits lists */
#pricing-info-section .card-footer .list-group-item {
  padding: 0.17rem 0 !important;
  font-size: 0.86rem; line-height: 1.4; border: 0 !important;
}
#pricing-info-section .card-footer ul.list-group { margin-bottom: 0.5rem !important; }
#pricing-info-section .card-footer hr { margin: 0.55rem 0 !important; opacity: 0.5; }
#pricing-info-section .card-footer .text-uppercase {
  font-size: 0.68rem !important; letter-spacing: 0.04em; margin-bottom: 0.35rem !important;
}
#pricing-info-section .card-footer .bi-check-lg { font-size: 0.85rem; }

/* ---- CTA hierarchy: soft cobalt for standard plans, solid for featured ---- */
#pricing-info-section .card .btn { border-radius: 12px !important; font-weight: 600 !important; }
#pricing-info-section .card:not(.lp-plan-featured) .btn {
  background: var(--lp-brand-50) !important;
  color: var(--lp-brand-700, #1a3286) !important;
  border: 1px solid var(--lp-brand-200, #abbcef) !important;
  box-shadow: none !important;
}
#pricing-info-section .card:not(.lp-plan-featured) .btn:hover {
  background: var(--lp-brand-600) !important;
  color: #fff !important;
  border-color: var(--lp-brand-600) !important;
}
#pricing-info-section .lp-plan-featured .btn {
  background: linear-gradient(135deg, #2c50c8, #1e3fb0) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 24px -10px rgba(30, 63, 176, 0.6) !important;
}
#pricing-info-section .lp-plan-featured .btn:hover { filter: brightness(1.07); }
[data-bs-theme="dark"] #pricing-info-section .card:not(.lp-plan-featured) .btn {
  background: rgba(159, 182, 255, 0.12) !important;
  color: #c8d4ff !important;
  border-color: rgba(159, 182, 255, 0.25) !important;
}
[data-bs-theme="dark"] #pricing-info-section .card:not(.lp-plan-featured) .btn:hover {
  background: var(--lp-brand-600) !important; color: #fff !important;
}
