/* ============================================================
   LUMAFRONT — styles.css
   Refactored: all selectors prefixed lf-, all vars --lf-,
   CSS divided into named sections matching HTML markers.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── LF_TOKENS: colors, type, spacing, radii, shadows, z-index ── */
:root {
  /* Brand Colors */
  --lf-bg:           #FAFAF8;
  --lf-surface:      #FFFFFF;
  --lf-surface-alt:  #F5F4F0;

  --lf-navy:         #0D1B2A;
  --lf-navy-mid:     #1A2E45;
  --lf-navy-soft:    #243B55;

  --lf-gold:         #B8973A;
  --lf-gold-light:   #D4AF60;
  --lf-gold-pale:    #F0E6C8;
  --lf-gold-glow:    rgba(184,151,58,.18);

  --lf-text-primary: #0D1B2A;
  --lf-text-body:    #3A4A5A;
  --lf-text-muted:   #7A8A9A;
  --lf-text-light:   #FFFFFF;

  --lf-border:       rgba(13,27,42,.09);
  --lf-border-gold:  rgba(184,151,58,.3);

  /* Gradients */
  --lf-grad-hero:    linear-gradient(135deg, #0D1B2A 0%, #1A3050 45%, #0F2540 100%);
  --lf-grad-gold:    linear-gradient(135deg, #B8973A 0%, #D4AF60 50%, #B8973A 100%);
  --lf-grad-surface: linear-gradient(180deg, #FAFAF8 0%, #F0ECE3 100%);
  --lf-grad-card:    linear-gradient(145deg, #FFFFFF 0%, #F8F6F2 100%);
  --lf-grad-mesh:    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(184,151,58,.07) 0%, transparent 60%),
                     radial-gradient(ellipse 60% 80% at 80% 20%, rgba(13,27,42,.04) 0%, transparent 60%);

  /* Typography */
  --lf-font-display: 'Cormorant Garamond', Georgia, serif;
  --lf-font-body:    'DM Sans', system-ui, sans-serif;

  --lf-text-xs:   0.75rem;
  --lf-text-sm:   0.875rem;
  --lf-text-base: 1rem;
  --lf-text-lg:   1.125rem;
  --lf-text-xl:   1.25rem;
  --lf-text-2xl:  1.5rem;
  --lf-text-3xl:  1.875rem;
  --lf-text-4xl:  2.5rem;
  --lf-text-5xl:  3.25rem;
  --lf-text-6xl:  4.25rem;
  --lf-text-7xl:  5.5rem;

  /* Spacing */
  --lf-sp-1:   0.25rem;
  --lf-sp-2:   0.5rem;
  --lf-sp-3:   0.75rem;
  --lf-sp-4:   1rem;
  --lf-sp-6:   1.5rem;
  --lf-sp-8:   2rem;
  --lf-sp-10:  2.5rem;
  --lf-sp-12:  3rem;
  --lf-sp-16:  4rem;
  --lf-sp-20:  5rem;
  --lf-sp-24:  3rem;
  --lf-sp-32:  3rem;

  /* Radii */
  --lf-r-sm:   4px;
  --lf-r-md:   8px;
  --lf-r-lg:   16px;
  --lf-r-xl:   24px;
  --lf-r-2xl:  32px;
  --lf-r-pill: 999px;

  /* Shadows */
  --lf-shadow-xs:   0 1px 3px rgba(13,27,42,.06), 0 1px 2px rgba(13,27,42,.04);
  --lf-shadow-sm:   0 4px 12px rgba(13,27,42,.08), 0 2px 4px rgba(13,27,42,.04);
  --lf-shadow-md:   0 8px 24px rgba(13,27,42,.10), 0 4px 8px rgba(13,27,42,.06);
  --lf-shadow-lg:   0 16px 48px rgba(13,27,42,.12), 0 8px 16px rgba(13,27,42,.06);
  --lf-shadow-xl:   0 24px 64px rgba(13,27,42,.15), 0 12px 24px rgba(13,27,42,.08);
  --lf-shadow-gold: 0 8px 32px rgba(184,151,58,.25), 0 2px 8px rgba(184,151,58,.15);

  /* Layout */
  --lf-container-xs:  480px;
  --lf-container-sm:  640px;
  --lf-container-md:  768px;
  --lf-container-lg:  1024px;
  --lf-container-xl:  1200px;
  --lf-container-2xl: 1440px;

  /* Transitions */
  --lf-ease-out:   cubic-bezier(.16,1,.3,1);
  --lf-ease-in:    cubic-bezier(.4,0,1,1);
  --lf-ease-inout: cubic-bezier(.37,0,.63,1);
  --lf-dur-fast:   150ms;
  --lf-dur-base:   250ms;
  --lf-dur-slow:   450ms;
  --lf-dur-xslow:  700ms;
}


/* ── LF_GLOBAL_RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--lf-font-body);
  font-size: var(--lf-text-base);
  color: var(--lf-text-body);
  background: var(--lf-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ── LF_GLOBAL_UTILITIES ─────────────────────────────────── */
.lf-container {
  width: 100%;
  max-width: var(--lf-container-xl);
  margin-inline: auto;
  padding-inline: var(--lf-sp-6);
}
.lf-container--wide   { max-width: var(--lf-container-2xl); }
.lf-container--narrow { max-width: var(--lf-container-md); }

.lf-section-pad     { padding-block: var(--lf-sp-24); }
.lf-section-pad--lg { padding-block: var(--lf-sp-32); }
.lf-section-pad--sm { padding-block: var(--lf-sp-16); }

.lf-sr-only {
  position: absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* Reveal animations */
.lf-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--lf-dur-xslow) var(--lf-ease-out),
              transform var(--lf-dur-xslow) var(--lf-ease-out);
}
.lf-reveal.lf-is-visible { opacity: 1; transform: none; }

.lf-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--lf-dur-xslow) var(--lf-ease-out),
              transform var(--lf-dur-xslow) var(--lf-ease-out);
}
.lf-reveal-left.lf-is-visible { opacity: 1; transform: none; }

.lf-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--lf-dur-xslow) var(--lf-ease-out),
              transform var(--lf-dur-xslow) var(--lf-ease-out);
}
.lf-reveal-right.lf-is-visible { opacity: 1; transform: none; }

.lf-reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity var(--lf-dur-xslow) var(--lf-ease-out),
              transform var(--lf-dur-xslow) var(--lf-ease-out);
}
.lf-reveal-scale.lf-is-visible { opacity: 1; transform: none; }

/* Stagger delay children */
.lf-stagger > *:nth-child(1) { transition-delay: 60ms; }
.lf-stagger > *:nth-child(2) { transition-delay: 140ms; }
.lf-stagger > *:nth-child(3) { transition-delay: 220ms; }
.lf-stagger > *:nth-child(4) { transition-delay: 300ms; }
.lf-stagger > *:nth-child(5) { transition-delay: 380ms; }
.lf-stagger > *:nth-child(6) { transition-delay: 460ms; }
.lf-stagger > *:nth-child(7) { transition-delay: 540ms; }
.lf-stagger > *:nth-child(8) { transition-delay: 620ms; }


/* ── LF_GLOBAL_BUTTONS ───────────────────────────────────── */
.lf-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--lf-sp-2);
  padding: var(--lf-sp-3) var(--lf-sp-8);
  font-family: var(--lf-font-body);
  font-size: var(--lf-text-sm);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--lf-r-pill);
  transition: all var(--lf-dur-base) var(--lf-ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.lf-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--lf-dur-fast);
}
.lf-btn:hover::after { opacity: 1; }
.lf-btn:focus-visible { outline: 2px solid var(--lf-gold); outline-offset: 3px; }

.lf-btn-primary {
  background: var(--lf-grad-gold);
  color: var(--lf-navy);
  box-shadow: var(--lf-shadow-gold);
}
.lf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,151,58,.35), 0 4px 12px rgba(184,151,58,.2);
}
.lf-btn-primary:active { transform: translateY(0); }

.lf-btn-outline {
  background: transparent;
  color: var(--lf-text-light);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.lf-btn-outline:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.lf-btn-outline-dark {
  background: transparent;
  color: var(--lf-navy);
  border: 1.5px solid var(--lf-border-gold);
}
.lf-btn-outline-dark:hover {
  background: var(--lf-gold-pale);
  border-color: var(--lf-gold);
  transform: translateY(-2px);
}

.lf-btn-ghost {
  padding: var(--lf-sp-2) var(--lf-sp-4);
  font-size: var(--lf-text-sm);
  color: var(--lf-gold);
  letter-spacing: .04em;
}
.lf-btn-ghost::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--lf-gold-pale);
  opacity: 0;
  border-radius: inherit;
  transition: opacity var(--lf-dur-fast);
}
.lf-btn-ghost:hover::before { opacity: 1; }

.lf-btn-lg { padding: var(--lf-sp-4) var(--lf-sp-10); font-size: var(--lf-text-base); }


/* ── LF_GLOBAL_TYPOGRAPHY ────────────────────────────────── */
.lf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--lf-sp-2);
  font-family: var(--lf-font-body);
  font-size: var(--lf-text-xs);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lf-gold);
}
.lf-eyebrow::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--lf-gold);
  flex-shrink: 0;
}

.lf-heading-display {
  font-family: var(--lf-font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--lf-text-primary);
  letter-spacing: -.02em;
}
.lf-heading-section {
  font-family: var(--lf-font-display);
  font-weight: 500;
  font-size: var(--lf-text-5xl);
  line-height: 1.12;
  color: var(--lf-text-primary);
  letter-spacing: -.025em;
}
.lf-heading-card {
  font-family: var(--lf-font-display);
  font-size: var(--lf-text-xl);
  font-weight: 600;
  line-height: 1.3;
  color: var(--lf-text-primary);
}
.lf-gold-line {
  display: block;
  width: 48px; height: 2px;
  background: var(--lf-grad-gold);
  border-radius: var(--lf-r-pill);
  margin-top: var(--lf-sp-4);
}
.lf-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--lf-sp-4);
  margin-bottom: var(--lf-sp-16);
}
.lf-section-header .lf-heading-section { max-width: 720px; }
.lf-section-header p {
  max-width: 560px;
  color: var(--lf-text-muted);
  font-size: var(--lf-text-lg);
  line-height: 1.65;
}


/* SECTION: LF_SCROLL_PROGRESS START */
#lf-scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #B8973A, #D4AF60);
  transform: scaleX(0); transform-origin: left;
  z-index: 9999; pointer-events: none;
}
/* SECTION: LF_SCROLL_PROGRESS END */


/* SECTION: LF_HEADER_MENU START */
#lf-header-menu {
  position: sticky; top: 0; z-index: 999;
  background: rgba(250,250,248,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--lf-border);
  transition: box-shadow var(--lf-dur-base) var(--lf-ease-out),
              background var(--lf-dur-base) var(--lf-ease-out);
}
#lf-header-menu.lf-scrolled {
  box-shadow: var(--lf-shadow-md);
  background: rgba(250,250,248,.96);
}
#lf-header-menu .lf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
#lf-header-menu .lf-brand {
  display: flex; flex-direction: column;
  line-height: 1; text-decoration: none; flex-shrink: 0;
}
#lf-header-menu .lf-brand-name {
  font-family: var(--lf-font-display);
  font-size: var(--lf-text-2xl);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--lf-navy);
  line-height: 1;
}
#lf-header-menu .lf-brand-name em { font-style: italic; color: var(--lf-gold); }
#lf-header-menu .lf-brand-tagline {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lf-text-muted); font-weight: 500; margin-top: 4px;
}
#lf-header-menu .lf-site-nav { display: flex; align-items: center; gap: var(--lf-sp-8); }
#lf-header-menu .lf-nav-links { display: flex; align-items: center; gap: var(--lf-sp-2); }
#lf-header-menu .lf-nav-link {
  font-size: var(--lf-text-sm); font-weight: 500;
  color: var(--lf-text-body);
  padding: var(--lf-sp-2) var(--lf-sp-3);
  border-radius: var(--lf-r-md);
  letter-spacing: .03em;
  transition: color var(--lf-dur-fast), background var(--lf-dur-fast);
  position: relative;
}
#lf-header-menu .lf-nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: var(--lf-sp-3); right: var(--lf-sp-3);
  height: 1.5px; background: var(--lf-gold);
  transform: scaleX(0);
  transition: transform var(--lf-dur-base) var(--lf-ease-out);
}
#lf-header-menu .lf-nav-link:hover { color: var(--lf-navy); }
#lf-header-menu .lf-nav-link:hover::after { transform: scaleX(1); }
#lf-header-menu .lf-nav-link:focus-visible { outline: 2px solid var(--lf-gold); outline-offset: 2px; }
#lf-header-menu .lf-nav-cta .lf-btn-primary { padding: var(--lf-sp-2) var(--lf-sp-6); }

/* Hamburger */
#lf-header-menu .lf-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer; border-radius: var(--lf-r-md);
  padding: var(--lf-sp-2);
  transition: background var(--lf-dur-fast);
}
#lf-header-menu .lf-hamburger:hover { background: var(--lf-surface-alt); }
#lf-header-menu .lf-hamburger:focus-visible { outline: 2px solid var(--lf-gold); outline-offset: 2px; }
#lf-header-menu .lf-hamburger-bar {
  display: block; width: 100%; height: 1.5px;
  background: var(--lf-navy);
  border-radius: var(--lf-r-pill);
  transition: transform var(--lf-dur-base) var(--lf-ease-out),
              opacity var(--lf-dur-fast), width var(--lf-dur-base) var(--lf-ease-out);
  transform-origin: center;
}
#lf-header-menu .lf-hamburger-bar:nth-child(3) { width: 65%; }
#lf-header-menu .lf-hamburger.lf-is-open .lf-hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#lf-header-menu .lf-hamburger.lf-is-open .lf-hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
#lf-header-menu .lf-hamburger.lf-is-open .lf-hamburger-bar:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
#lf-mobile-nav-menu {
  display: none;
  position: fixed; inset: 72px 0 0;
  background: rgba(250,250,248,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  padding: var(--lf-sp-8) var(--lf-sp-6);
  opacity: 0; transform: translateY(-12px);
  pointer-events: none;
  transition: opacity var(--lf-dur-slow) var(--lf-ease-out),
              transform var(--lf-dur-slow) var(--lf-ease-out);
  border-top: 1px solid var(--lf-border);
}
#lf-mobile-nav-menu.lf-is-open { opacity: 1; transform: none; pointer-events: auto; }
#lf-mobile-nav-menu .lf-mobile-nav-links {
  display: flex; flex-direction: column; gap: var(--lf-sp-2); margin-bottom: var(--lf-sp-8);
}
#lf-mobile-nav-menu .lf-mobile-nav-link {
  font-size: var(--lf-text-xl);
  font-family: var(--lf-font-display);
  font-weight: 500;
  color: var(--lf-navy);
  padding: var(--lf-sp-3) var(--lf-sp-4);
  border-radius: var(--lf-r-md);
  letter-spacing: -.01em;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--lf-border);
  transition: color var(--lf-dur-fast), background var(--lf-dur-fast);
}
#lf-mobile-nav-menu .lf-mobile-nav-link:hover { color: var(--lf-gold); background: var(--lf-gold-pale); }
#lf-mobile-nav-menu .lf-mobile-nav-link:focus-visible { outline: 2px solid var(--lf-gold); }
/* SECTION: LF_HEADER_MENU END */


/* SECTION: LF_HERO_BANNER START */
#lf-hero-banner {
  position: relative;
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(135deg, rgba(8,18,28,.88) 0%, rgba(15,32,55,.80) 45%, rgba(8,20,40,.88) 100%),
    url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1920&q=80') center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#lf-hero-banner .lf-hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
#lf-hero-banner .lf-hero-orb-1 {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(184,151,58,.15) 0%, transparent 70%);
  animation: lf-orbFloat1 12s ease-in-out infinite;
}
#lf-hero-banner .lf-hero-orb-2 {
  width: 400px; height: 400px; bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(26,48,80,.6) 0%, transparent 70%);
  animation: lf-orbFloat2 16s ease-in-out infinite;
}
#lf-hero-banner .lf-hero-orb-3 {
  width: 300px; height: 300px; top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(184,151,58,.08) 0%, transparent 70%);
  animation: lf-orbFloat3 20s ease-in-out infinite;
}
@keyframes lf-orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-30px,40px) scale(1.05); }
  66%  { transform: translate(20px,-20px) scale(.96); }
}
@keyframes lf-orbFloat2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(40px,-30px) scale(1.08); }
}
@keyframes lf-orbFloat3 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%  { transform: translate(-20px,30px) rotate(90deg); }
  75%  { transform: translate(20px,-20px) rotate(270deg); }
}
#lf-hero-banner .lf-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
#lf-hero-banner .lf-hero-diagonal {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(135deg, transparent 0%, rgba(184,151,58,.06) 50%, rgba(184,151,58,.03) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
#lf-hero-banner .lf-hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
#lf-hero-banner .lf-particle {
  position: absolute; border-radius: 50%;
  background: var(--lf-gold); opacity: 0;
  animation: lf-particleFly linear infinite;
}
@keyframes lf-particleFly {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: .6; transform: translateY(-20px) scale(1); }
  90%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-200px) scale(.3); }
}
#lf-hero-banner .lf-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--lf-sp-16); align-items: center;
}
#lf-hero-banner .lf-hero-content { max-width: 640px; }
#lf-hero-banner .lf-hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--lf-sp-3);
  font-size: var(--lf-text-xs); letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--lf-gold-light); margin-bottom: var(--lf-sp-6);
  animation: lf-heroFadeUp .8s var(--lf-ease-out) .1s both;
}
#lf-hero-banner .lf-hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lf-gold);
  animation: lf-pulse 2s ease-in-out infinite;
}
@media (max-width: 640px) {
	#lf-hero-banner .lf-hero-eyebrow {
		align-items: flex-start;
		gap: 10px;
		letter-spacing: .12em;
	}

	#lf-hero-banner .lf-hero-eyebrow-dot {
		flex: 0 0 auto;
		margin-top: .38em;
	}
}
@keyframes lf-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,151,58,.5); }
  50%     { box-shadow: 0 0 0 8px transparent; }
}
#lf-hero-banner .lf-hero-headline {
  font-family: var(--lf-font-display);
  font-size: clamp(var(--lf-text-4xl), 5.5vw, var(--lf-text-7xl));
  font-weight: 300; line-height: 1.05;
  color: #FFFFFF; letter-spacing: -.03em;
  margin-bottom: var(--lf-sp-6);
  animation: lf-heroFadeUp .9s var(--lf-ease-out) .2s both;
}
#lf-hero-banner .lf-hero-headline strong {
  font-weight: 600; font-style: italic;
  background: var(--lf-grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
#lf-hero-banner .lf-hero-sub {
  font-size: var(--lf-text-lg); color: rgba(255,255,255,.65);
  line-height: 1.7; max-width: 480px;
  margin-bottom: var(--lf-sp-10);
  animation: lf-heroFadeUp 1s var(--lf-ease-out) .35s both;
  font-weight: 300;
}
#lf-hero-banner .lf-hero-actions {
  display: flex; align-items: center; gap: var(--lf-sp-4);
  flex-wrap: wrap;
  animation: lf-heroFadeUp 1s var(--lf-ease-out) .5s both;
}
#lf-hero-banner .lf-hero-trust {
  margin-top: var(--lf-sp-12);
  display: flex; align-items: center; gap: var(--lf-sp-6);
  animation: lf-heroFadeUp 1s var(--lf-ease-out) .65s both;
  flex-wrap: wrap;
}
#lf-hero-banner .lf-trust-item { display: flex; align-items: center; gap: var(--lf-sp-2); }
#lf-hero-banner .lf-trust-item span {
  font-size: var(--lf-text-xs); color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
}
@keyframes lf-heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
#lf-hero-banner .lf-hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  animation: lf-heroFadeUp 1.1s var(--lf-ease-out) .4s both;
}
#lf-hero-banner .lf-hero-card-stack { position: relative; width: 100%; max-width: 480px; }
#lf-hero-banner .lf-dashboard-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--lf-r-2xl);
  padding: var(--lf-sp-6);
  box-shadow: 0 32px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
#lf-hero-banner .lf-dashboard-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: var(--lf-sp-6);
}
#lf-hero-banner .lf-dashboard-dots { display: flex; gap: 6px; }
#lf-hero-banner .lf-dashboard-dot { width: 10px; height: 10px; border-radius: 50%; }
#lf-hero-banner .lf-d-dot-r { background: rgba(255,100,90,.6); }
#lf-hero-banner .lf-d-dot-y { background: rgba(255,190,50,.6); }
#lf-hero-banner .lf-d-dot-g { background: rgba(50,210,100,.6); }
#lf-hero-banner .lf-dashboard-badge {
  font-size: var(--lf-text-xs); color: var(--lf-gold-light);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
#lf-hero-banner .lf-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--lf-sp-3); margin-bottom: var(--lf-sp-4);
}
#lf-hero-banner .lf-stat-tile {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--lf-r-lg); padding: var(--lf-sp-4);
}
#lf-hero-banner .lf-stat-tile-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.4); font-weight: 600; margin-bottom: var(--lf-sp-1);
}
#lf-hero-banner .lf-stat-tile-value {
  font-family: var(--lf-font-display); font-size: var(--lf-text-2xl);
  font-weight: 600; color: #fff; line-height: 1;
}
#lf-hero-banner .lf-stat-tile-value.lf-gold { color: var(--lf-gold-light); }
#lf-hero-banner .lf-stat-tile-delta { font-size: var(--lf-text-xs); color: #4ADE80; margin-top: var(--lf-sp-1); }
#lf-hero-banner .lf-mini-chart {
  height: 60px; display: flex; align-items: flex-end;
  gap: 4px; margin-bottom: var(--lf-sp-4);
}
#lf-hero-banner .lf-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: rgba(184,151,58,.3);
  animation: lf-barGrow .8s var(--lf-ease-out) forwards;
  transform-origin: bottom; transform: scaleY(0);
}
#lf-hero-banner .lf-bar.lf-active { background: var(--lf-grad-gold); }
@keyframes lf-barGrow { to { transform: scaleY(1); } }
#lf-hero-banner .lf-bar:nth-child(1) { animation-delay: .6s; }
#lf-hero-banner .lf-bar:nth-child(2) { animation-delay: .7s; }
#lf-hero-banner .lf-bar:nth-child(3) { animation-delay: .8s; }
#lf-hero-banner .lf-bar:nth-child(4) { animation-delay: .9s; }
#lf-hero-banner .lf-bar:nth-child(5) { animation-delay: 1s; }
#lf-hero-banner .lf-bar:nth-child(6) { animation-delay: 1.1s; }
#lf-hero-banner .lf-bar:nth-child(7) { animation-delay: 1.2s; }
#lf-hero-banner .lf-activity-list { display: flex; flex-direction: column; gap: var(--lf-sp-2); }
#lf-hero-banner .lf-activity-row {
  display: flex; align-items: center; gap: var(--lf-sp-3);
  padding: var(--lf-sp-2) var(--lf-sp-3);
  background: rgba(255,255,255,.04);
  border-radius: var(--lf-r-md);
  border: 1px solid rgba(255,255,255,.06);
}
#lf-hero-banner .lf-activity-icon {
  width: 28px; height: 28px; border-radius: var(--lf-r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
#lf-hero-banner .lf-activity-icon.lf-green { background: rgba(74,222,128,.15); }
#lf-hero-banner .lf-activity-icon.lf-gold  { background: rgba(184,151,58,.2); }
#lf-hero-banner .lf-activity-icon.lf-blue  { background: rgba(96,165,250,.15); }
#lf-hero-banner .lf-activity-text { flex: 1; font-size: var(--lf-text-xs); color: rgba(255,255,255,.65); }
#lf-hero-banner .lf-activity-text strong { color: rgba(255,255,255,.9); font-weight: 500; }
#lf-hero-banner .lf-activity-time { font-size: 10px; color: rgba(255,255,255,.3); }
#lf-hero-banner .lf-hero-badge {
  position: absolute; bottom: -24px; left: -32px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--lf-r-xl);
  padding: var(--lf-sp-3) var(--lf-sp-5);
  display: flex; align-items: center; gap: var(--lf-sp-3);
  animation: lf-badgeFloat 4s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
#lf-hero-banner .lf-hero-badge-icon { font-size: 20px; }
#lf-hero-banner .lf-hero-badge-text { font-size: var(--lf-text-xs); }
#lf-hero-banner .lf-hero-badge-text strong { display: block; color: #fff; font-size: var(--lf-text-sm); }
#lf-hero-banner .lf-hero-badge-text span { color: rgba(255,255,255,.5); letter-spacing: .06em; }
#lf-hero-banner .lf-hero-badge-2 {
  position: absolute; top: -20px; right: -24px;
  background: linear-gradient(135deg, rgba(184,151,58,.2), rgba(184,151,58,.08));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184,151,58,.35);
  border-radius: var(--lf-r-xl);
  padding: var(--lf-sp-3) var(--lf-sp-5);
  display: flex; align-items: center; gap: var(--lf-sp-3);
  animation: lf-badgeFloat2 5s ease-in-out infinite;
  box-shadow: var(--lf-shadow-gold);
}
#lf-hero-banner .lf-hero-badge-2 .lf-hero-badge-text strong { color: var(--lf-gold-light); }
@keyframes lf-badgeFloat {
  0%,100% { transform: translateY(0) rotate(-.5deg); }
  50%     { transform: translateY(-8px) rotate(.5deg); }
}
@keyframes lf-badgeFloat2 {
  0%,100% { transform: translateY(0) rotate(.5deg); }
  50%     { transform: translateY(-10px) rotate(-.5deg); }
}
#lf-hero-banner .lf-hero-scroll-cue {
  position: absolute; bottom: var(--lf-sp-8); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--lf-sp-2); z-index: 2;
  animation: lf-heroFadeUp 1s var(--lf-ease-out) 1s both;
}
#lf-hero-banner .lf-scroll-label {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
#lf-hero-banner .lf-scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 11px; position: relative; overflow: hidden;
}
#lf-hero-banner .lf-scroll-mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--lf-gold); border-radius: var(--lf-r-pill);
  animation: lf-scrollCue 1.8s ease-in-out infinite;
}
@keyframes lf-scrollCue {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
/* SECTION: LF_HERO_BANNER END */


/* SECTION: LF_HOW_IT_WORKS START */
#lf-how-it-works {
  background: var(--lf-bg);
  position: relative; overflow: hidden;
}
#lf-how-it-works::before {
  content: ''; position: absolute; inset: 0;
  background: var(--lf-grad-mesh); pointer-events: none;
}
#lf-how-it-works .lf-steps-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: var(--lf-sp-4); position: relative;
}
#lf-how-it-works .lf-steps-track::before {
  content: ''; position: absolute;
  top: 28px; left: calc(10% + 28px); right: calc(10% + 28px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--lf-border-gold), var(--lf-gold-light), var(--lf-border-gold), transparent);
  z-index: 0;
}
#lf-how-it-works .lf-step-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: var(--lf-sp-4); position: relative; z-index: 1;
  padding: var(--lf-sp-4) var(--lf-sp-2);
}
#lf-how-it-works .lf-step-number-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--lf-border-gold);
  display: flex; align-items: center; justify-content: center;
  background: var(--lf-surface);
  box-shadow: var(--lf-shadow-sm), 0 0 0 4px var(--lf-bg);
  position: relative;
  transition: border-color var(--lf-dur-base), box-shadow var(--lf-dur-base);
}
#lf-how-it-works .lf-step-item:hover .lf-step-number-ring {
  border-color: var(--lf-gold);
  box-shadow: var(--lf-shadow-gold), 0 0 0 4px var(--lf-bg);
}
#lf-how-it-works .lf-step-icon {
  color: var(--lf-gold);
  transition: transform var(--lf-dur-base) var(--lf-ease-out);
}
#lf-how-it-works .lf-step-item:hover .lf-step-icon { transform: scale(1.15); }
#lf-how-it-works .lf-step-title {
  font-family: var(--lf-font-display); font-size: var(--lf-text-base);
  font-weight: 600; color: var(--lf-navy); line-height: 1.3;
}
#lf-how-it-works .lf-step-desc {
  font-size: var(--lf-text-sm); color: var(--lf-text-muted); line-height: 1.55;
}
/* SECTION: LF_HOW_IT_WORKS END */


/* SECTION: LF_SERVICES_GRID START */
#lf-services {
  background: var(--lf-surface-alt); position: relative; overflow: hidden;
}
#lf-services::before {
  content: ''; position: absolute; inset: 0;
  background: var(--lf-grad-mesh);
  pointer-events: none;
}
#lf-services .lf-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--lf-sp-8);
}
#lf-services .lf-service-card {
  background: var(--lf-grad-card);
  border: 1px solid var(--lf-border);
  border-radius: var(--lf-r-xl);
  padding: var(--lf-sp-8) var(--lf-sp-6);
  position: relative; overflow: hidden;
  transition: transform var(--lf-dur-slow) var(--lf-ease-out),
              box-shadow var(--lf-dur-slow) var(--lf-ease-out),
              border-color var(--lf-dur-base);
}
#lf-services .lf-service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--lf-gold-pale) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--lf-dur-slow) var(--lf-ease-out);
  border-radius: inherit;
}
#lf-services .lf-service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lf-grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--lf-dur-slow) var(--lf-ease-out);
  border-radius: var(--lf-r-pill);
}
#lf-services .lf-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lf-shadow-lg);
  border-color: var(--lf-border-gold);
}
#lf-services .lf-service-card:hover::before { opacity: 1; }
#lf-services .lf-service-card:hover::after  { transform: scaleX(1); }
#lf-services .lf-service-card-inner { position: relative; z-index: 1; }
#lf-services .lf-service-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--lf-r-lg);
  background: var(--lf-gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--lf-sp-5);
  transition: background var(--lf-dur-base), transform var(--lf-dur-base) var(--lf-ease-out);
}
#lf-services .lf-service-card:hover .lf-service-icon-wrap {
  background: var(--lf-gold); transform: scale(1.05) rotate(-2deg);
}
#lf-services .lf-service-icon { color: var(--lf-gold); transition: color var(--lf-dur-base); }
#lf-services .lf-service-card:hover .lf-service-icon { color: var(--lf-navy); }
#lf-services .lf-service-title {
  font-family: var(--lf-font-display); font-size: var(--lf-text-lg);
  font-weight: 600; color: var(--lf-navy);
  margin-bottom: var(--lf-sp-3); line-height: 1.3;
}
#lf-services .lf-service-desc {
  font-size: var(--lf-text-sm); color: var(--lf-text-muted);
  line-height: 1.65; margin-bottom: var(--lf-sp-5);
}
#lf-services .lf-service-link {
  display: inline-flex; align-items: center; gap: var(--lf-sp-2);
  font-size: var(--lf-text-sm); font-weight: 600;
  color: var(--lf-gold); letter-spacing: .04em;
  transition: gap var(--lf-dur-base) var(--lf-ease-out), color var(--lf-dur-fast);
}
#lf-services .lf-service-link:hover { color: var(--lf-navy); gap: var(--lf-sp-3); }
#lf-services .lf-service-link-arrow { transition: transform var(--lf-dur-base) var(--lf-ease-out); }
#lf-services .lf-service-link:hover .lf-service-link-arrow { transform: translateX(4px); }
/* SECTION: LF_SERVICES_GRID END */


/* SECTION: LF_TESTIMONIALS START */
#lf-testimonials .lf-testimonials-grid{
	display:grid !important;
	grid-template-columns:repeat(auto-fit,minmax(280px,1fr)) !important;
	gap:18px !important;
	align-items:stretch;
}
#lf-testimonials {
  background: var(--lf-bg); position: relative; overflow: hidden;
}
#lf-testimonials::after {
  content: '"'; position: absolute; right: -40px; top: -40px;
  font-family: var(--lf-font-display); font-size: 400px; font-weight: 700;
  color: rgba(184,151,58,.04); line-height: 1;
  pointer-events: none; user-select: none;
}
#lf-testimonials .lf-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--lf-sp-5);
}
#lf-testimonials .lf-testimonial-card {
  background: var(--lf-surface);
  border: 1px solid var(--lf-border);
  border-radius: var(--lf-r-xl); padding: var(--lf-sp-8);
  position: relative;
  transition: transform var(--lf-dur-slow) var(--lf-ease-out),
              box-shadow var(--lf-dur-slow) var(--lf-ease-out);
}
#lf-testimonials .lf-testimonial-card:hover {
  transform: translateY(-4px); box-shadow: var(--lf-shadow-lg);
}
#lf-testimonials .lf-testimonial-card.lf-featured {
  background: linear-gradient(145deg, var(--lf-navy) 0%, var(--lf-navy-soft) 100%);
  border-color: rgba(184,151,58,.25); box-shadow: var(--lf-shadow-xl);
}
#lf-testimonials .lf-testimonial-quote-icon {
  width: 36px; height: 36px; border-radius: var(--lf-r-sm);
  background: var(--lf-gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--lf-sp-5); color: var(--lf-gold);
}
#lf-testimonials .lf-testimonial-card.lf-featured .lf-testimonial-quote-icon {
  background: rgba(184,151,58,.2);
}
#lf-testimonials .lf-testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--lf-sp-4); }
#lf-testimonials .lf-star { color: var(--lf-gold); font-size: 14px; }
#lf-testimonials .lf-testimonial-body {
  font-family: var(--lf-font-display); font-size: var(--lf-text-lg);
  font-style: italic; line-height: 1.65;
  color: var(--lf-text-body); margin-bottom: var(--lf-sp-6);
}
#lf-testimonials .lf-testimonial-card.lf-featured .lf-testimonial-body { color: rgba(255,255,255,.85); }
#lf-testimonials .lf-testimonial-footer { display: flex; align-items: center; gap: var(--lf-sp-3); }
#lf-testimonials .lf-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lf-font-display); font-size: var(--lf-text-lg);
  font-weight: 600; flex-shrink: 0;
}
#lf-testimonials .lf-testimonial-name {
  font-weight: 600; font-size: var(--lf-text-sm);
  color: var(--lf-navy); line-height: 1.2;
}
#lf-testimonials .lf-testimonial-card.lf-featured .lf-testimonial-name { color: #fff; }
#lf-testimonials .lf-testimonial-role { font-size: var(--lf-text-xs); color: var(--lf-text-muted); }
#lf-testimonials .lf-testimonial-card.lf-featured .lf-testimonial-role { color: rgba(255,255,255,.45); }
/* Avatar palette */
#lf-testimonials .lf-av-1 { background: #E8EFF7; color: #2A4A7F; }
#lf-testimonials .lf-av-2 { background: #F0EBE0; color: #7A5C20; }
#lf-testimonials .lf-av-3 { background: #E5F3EE; color: #1E6845; }
#lf-testimonials .lf-av-4 { background: #F3E8F0; color: #6E2B6E; }
#lf-testimonials .lf-av-5 { background: rgba(184,151,58,.25); color: var(--lf-gold-light); }
#lf-testimonials .lf-av-6 { background: #EAE8F5; color: #4A3A8A; }
/* SECTION: LF_TESTIMONIALS END */


/* SECTION: LF_CASE_STUDIES START */
#lf-case-studies {
  background: var(--lf-navy); position: relative; overflow: hidden;
}
#lf-case-studies::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 50%, rgba(184,151,58,.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 70% at 100% 30%, rgba(26,48,80,.9) 0%, transparent 60%);
}
#lf-case-studies .lf-cs-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
#lf-case-studies .lf-section-header .lf-eyebrow { color: var(--lf-gold-light); }
#lf-case-studies .lf-section-header .lf-heading-section { color: #fff; }
#lf-case-studies .lf-section-header p { color: rgba(255,255,255,.5); }
#lf-case-studies .lf-gold-line { display: none; }
#lf-case-studies .lf-case-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--lf-sp-6); position: relative; z-index: 1;
}
#lf-case-studies .lf-case-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--lf-r-2xl); padding: var(--lf-sp-8);
  position: relative; overflow: hidden;
  transition: transform var(--lf-dur-slow) var(--lf-ease-out),
              border-color var(--lf-dur-base), background var(--lf-dur-slow);
}
#lf-case-studies .lf-case-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lf-grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--lf-dur-slow) var(--lf-ease-out);
}
#lf-case-studies .lf-case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184,151,58,.25);
  background: rgba(255,255,255,.07);
}
#lf-case-studies .lf-case-card:hover::after { transform: scaleX(1); }
#lf-case-studies .lf-case-industry {
  display: inline-block; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600;
  color: var(--lf-gold);
  background: rgba(184,151,58,.12); border: 1px solid rgba(184,151,58,.2);
  border-radius: var(--lf-r-pill); padding: 4px 12px; margin-bottom: var(--lf-sp-5);
}
#lf-case-studies .lf-case-title {
  font-family: var(--lf-font-display); font-size: var(--lf-text-2xl);
  font-weight: 500; color: #fff; line-height: 1.3; margin-bottom: var(--lf-sp-5);
}
#lf-case-studies .lf-case-metrics {
  display: flex; gap: var(--lf-sp-4); flex-wrap: wrap;
  margin-bottom: var(--lf-sp-6); padding: var(--lf-sp-4);
  background: rgba(184,151,58,.06);
  border-radius: var(--lf-r-lg); border: 1px solid rgba(184,151,58,.12);
}
#lf-case-studies .lf-metric { text-align: center; flex: 1; min-width: 80px; }
#lf-case-studies .lf-metric-value {
  font-family: var(--lf-font-display); font-size: var(--lf-text-3xl);
  font-weight: 600; color: var(--lf-gold-light); line-height: 1;
}
#lf-case-studies .lf-metric-label {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.4); margin-top: 4px;
}
#lf-case-studies .lf-case-desc { font-size: var(--lf-text-sm); color: rgba(255,255,255,.55); line-height: 1.65; }
/* SECTION: LF_CASE_STUDIES END */


/* SECTION: LF_CTA START */
#lf-cta {
  background: var(--lf-bg); padding-block: var(--lf-sp-24);
  position: relative; overflow: hidden;
}
#lf-cta .lf-cta-inner {
  background: var(--lf-grad-hero);
  border-radius: var(--lf-r-2xl);
  padding: var(--lf-sp-20) var(--lf-sp-12);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--lf-shadow-xl);
}
#lf-cta .lf-cta-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,151,58,.2);
  pointer-events: none;
  animation: lf-ringExpand 6s ease-in-out infinite;
}
#lf-cta .lf-cta-ring-1 {
  width: 300px; height: 300px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation-delay: 0s;
}
#lf-cta .lf-cta-ring-2 {
  width: 500px; height: 500px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation-delay: 1.5s;
}
#lf-cta .lf-cta-ring-3 {
  width: 700px; height: 700px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation-delay: 3s;
}
@keyframes lf-ringExpand {
  0%   { opacity: .5; transform: translate(-50%,-50%) scale(.9); }
  50%  { opacity: .15; transform: translate(-50%,-50%) scale(1.05); }
  100% { opacity: .5; transform: translate(-50%,-50%) scale(.9); }
}
#lf-cta .lf-cta-inner-content {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto;
}
#lf-cta .lf-cta-heading {
  font-family: var(--lf-font-display);
  font-size: clamp(var(--lf-text-3xl), 4vw, var(--lf-text-6xl));
  font-weight: 300; color: #fff; line-height: 1.1;
  margin-bottom: var(--lf-sp-6); letter-spacing: -.03em;
}
#lf-cta .lf-cta-heading strong { font-style: italic; font-weight: 600; color: var(--lf-gold-light); }
#lf-cta .lf-cta-sub {
  color: rgba(255,255,255,.6); font-size: var(--lf-text-lg);
  line-height: 1.65; margin-bottom: var(--lf-sp-10);
}
#lf-cta .lf-cta-badges {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: var(--lf-sp-3); margin-top: var(--lf-sp-8);
}
#lf-cta .lf-cta-badge {
  display: inline-flex; align-items: center; gap: var(--lf-sp-2);
  font-size: var(--lf-text-xs); color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase;
  padding: var(--lf-sp-2) var(--lf-sp-4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--lf-r-pill);
}
#lf-cta .lf-cta-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80; flex-shrink: 0;
}
/* SECTION: LF_CTA END */


/* SECTION: LF_FOOTER START */
#lf-footer {
  background: var(--lf-navy); color: rgba(255,255,255,.5);
  position: relative; overflow: hidden;
}
#lf-footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 40% at 50% 100%, rgba(184,151,58,.05) 0%, transparent 70%);
}
#lf-footer .lf-footer-top {
  padding: var(--lf-sp-20) 0 var(--lf-sp-16);
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 1;
}
#lf-footer .lf-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--lf-sp-12);
}
#lf-footer .lf-footer-brand .lf-brand-name { color: #fff; font-size: var(--lf-text-3xl); }
#lf-footer .lf-footer-brand .lf-brand-tagline { color: rgba(255,255,255,.3); }
#lf-footer .lf-footer-brand-desc {
  font-size: var(--lf-text-sm); color: rgba(255,255,255,.4);
  line-height: 1.7; margin-top: var(--lf-sp-4); max-width: 280px;
}
#lf-footer .lf-footer-socials { display: flex; gap: var(--lf-sp-3); margin-top: var(--lf-sp-6); }
#lf-footer .lf-social-btn {
  width: 38px; height: 38px; border-radius: var(--lf-r-md);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: background var(--lf-dur-fast), color var(--lf-dur-fast), border-color var(--lf-dur-fast);
}
#lf-footer .lf-social-btn:hover {
  background: rgba(184,151,58,.2); color: var(--lf-gold-light);
  border-color: rgba(184,151,58,.3);
}
#lf-footer .lf-social-btn:focus-visible { outline: 2px solid var(--lf-gold); outline-offset: 2px; }
#lf-footer .lf-footer-col-title {
  font-family: var(--lf-font-body); font-size: var(--lf-text-xs);
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: var(--lf-sp-5);
}
#lf-footer .lf-footer-links { display: flex; flex-direction: column; gap: var(--lf-sp-3); }
#lf-footer .lf-footer-link {
  font-size: var(--lf-text-sm); color: rgba(255,255,255,.4);
  transition: color var(--lf-dur-fast);
  display: flex; align-items: center; gap: var(--lf-sp-2);
}
#lf-footer .lf-footer-link::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--lf-gold); flex-shrink: 0; opacity: 0;
  transition: opacity var(--lf-dur-fast);
}
#lf-footer .lf-footer-link:hover { color: rgba(255,255,255,.9); }
#lf-footer .lf-footer-link:hover::before { opacity: 1; }
#lf-footer .lf-footer-link:focus-visible { outline: 1px solid var(--lf-gold); outline-offset: 2px; }
#lf-footer .lf-footer-contact-item {
  display: flex; align-items: flex-start;
  gap: var(--lf-sp-3); font-size: var(--lf-text-sm);
  color: rgba(255,255,255,.4); line-height: 1.55;
}
#lf-footer .lf-footer-contact-item + .lf-footer-contact-item { margin-top: var(--lf-sp-4); }
#lf-footer .lf-footer-contact-icon { flex-shrink: 0; margin-top: 2px; color: var(--lf-gold); }
#lf-footer .lf-footer-bottom { padding: var(--lf-sp-6) 0; position: relative; z-index: 1; }
#lf-footer .lf-footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--lf-sp-4); flex-wrap: wrap;
}
#lf-footer .lf-footer-copy { font-size: var(--lf-text-xs); color: rgba(255,255,255,.25); }
#lf-footer .lf-footer-legal { display: flex; gap: var(--lf-sp-6); }
#lf-footer .lf-footer-legal a {
  font-size: var(--lf-text-xs); color: rgba(255,255,255,.25);
  transition: color var(--lf-dur-fast);
}
#lf-footer .lf-footer-legal a:hover { color: rgba(255,255,255,.6); }
/* SECTION: LF_FOOTER END */


/* ── LF_REDUCED_MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .lf-reveal, .lf-reveal-left, .lf-reveal-right, .lf-reveal-scale {
    opacity: 1 !important; transform: none !important;
  }
}

/* ── LF_RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  #lf-services .lf-services-grid { grid-template-columns: repeat(3, 1fr); }
  #lf-hero-banner .lf-hero-inner { gap: var(--lf-sp-10); }
}
@media (max-width: 900px) {
  #lf-header-menu .lf-site-nav { display: none; }
  #lf-header-menu .lf-hamburger { display: flex; }
  #lf-mobile-nav-menu { display: block; }
  #lf-hero-banner .lf-hero-inner {
    grid-template-columns: 1fr; text-align: center; gap: var(--lf-sp-12);
  }
  #lf-hero-banner .lf-hero-content { max-width: 100%; }
  #lf-hero-banner .lf-hero-sub { margin-inline: auto; }
  #lf-hero-banner .lf-hero-actions { justify-content: center; }
  #lf-hero-banner .lf-hero-trust { justify-content: center; }
  #lf-hero-banner .lf-hero-visual { order: 1; max-width: 420px; margin-inline: auto; }
  #lf-how-it-works .lf-steps-track { grid-template-columns: 1fr 1fr; gap: var(--lf-sp-6); }
  #lf-how-it-works .lf-steps-track::before { display: none; }
  #lf-how-it-works .lf-steps-track > *:last-child { grid-column: span 2; }
  #lf-services .lf-services-grid { grid-template-columns: repeat(2, 1fr); }
  #lf-testimonials .lf-testimonials-grid { grid-template-columns: 1fr 1fr; }
  #lf-case-studies .lf-case-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  #lf-footer .lf-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--lf-sp-8); }
}
@media (max-width: 640px) {
  :root { --lf-text-5xl: 2.5rem; --lf-text-4xl: 2rem; --lf-text-3xl: 1.5rem; }
  .lf-container { padding-inline: var(--lf-sp-4); }
  .lf-section-pad { padding-block: var(--lf-sp-16); }
  .lf-section-pad--lg { padding-block: var(--lf-sp-20); }
  #lf-hero-banner .lf-hero-badge,
  #lf-hero-banner .lf-hero-badge-2,
  #lf-hero-banner .lf-hero-scroll-cue { display: none; }
  #lf-how-it-works .lf-steps-track { grid-template-columns: 1fr; }
  #lf-how-it-works .lf-steps-track > *:last-child { grid-column: span 1; }
  #lf-services .lf-services-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  #lf-testimonials .lf-testimonials-grid { grid-template-columns: 1fr; }
  #lf-footer .lf-footer-grid { grid-template-columns: 1fr; }
  #lf-footer .lf-footer-bottom-inner { flex-direction: column; text-align: center; }
  #lf-cta .lf-cta-inner { padding: var(--lf-sp-12) var(--lf-sp-6); }
}

/* ── SECTION: LC_UNIFIED_INTELLIGENCE (shared — used on index.html & services.html) START ── */
#lc-sp-unified {
  background: var(--lf-grad-surface);
  padding-block: var(--lf-sp-32);
  border-top: 1px solid var(--lf-border);
  position: relative;
  overflow: hidden;
}
#lc-sp-unified::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--lf-grad-mesh);
  pointer-events: none;
}
#lc-sp-unified .lf-container { position: relative; z-index: 1; }

.lc-sp-unified-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lf-sp-24);
  align-items: center;
}

.lc-sp-capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--lf-sp-2);
}
.lc-sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--lf-surface);
  border: 1px solid var(--lf-border-gold);
  border-radius: var(--lf-r-pill);
  font-size: var(--lf-text-xs);
  font-weight: 500;
  color: var(--lf-navy);
  letter-spacing: .04em;
  box-shadow: var(--lf-shadow-xs);
}
.lc-sp-pill::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lf-gold);
  flex-shrink: 0;
}

.lc-sp-unified-right {
  display: flex;
  flex-direction: column;
  gap: var(--lf-sp-4);
}

.lc-sp-intel-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: var(--lf-sp-6);
  background: var(--lf-surface);
  border: 1px solid var(--lf-border);
  border-radius: var(--lf-r-xl);
  box-shadow: var(--lf-shadow-sm);
  transition: border-color var(--lf-dur-base) var(--lf-ease-out),
              box-shadow var(--lf-dur-base) var(--lf-ease-out),
              transform var(--lf-dur-base) var(--lf-ease-out);
}
.lc-sp-intel-card:hover {
  border-color: var(--lf-border-gold);
  box-shadow: var(--lf-shadow-gold);
  transform: translateY(-3px);
}
.lc-sp-intel-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--lf-navy);
  border-radius: var(--lf-r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--lf-gold);
  box-shadow: var(--lf-shadow-md);
}
.lc-sp-intel-icon svg { width: 20px; height: 20px; }
.lc-sp-intel-title {
  font-family: var(--lf-font-display);
  font-size: var(--lf-text-lg);
  font-weight: 600;
  color: var(--lf-navy);
  letter-spacing: -.01em;
  line-height: 1.3;
  margin-bottom: var(--lf-sp-2);
}
.lc-sp-intel-desc {
  font-size: var(--lf-text-sm);
  color: var(--lf-text-muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .lc-sp-unified-inner {
    grid-template-columns: 1fr;
    gap: var(--lf-sp-16);
  }
}
/* SECTION: LC_UNIFIED_INTELLIGENCE END */
