/*
 * Theme Name:        Lions Computer Solution — Anti-Gravity
 * Theme URI:         https://lcswebz.in/
 * Description:       Custom "Anti-Gravity" animated theme for Lions Computer Solution / A S Media and Services. Pure white, Navy Blue, and Mustard Yellow brand palette with hardware-accelerated float animations.
 * Version:           2.0.0
 * Author:            A S Media and Services
 * Author URI:        https://lcswebz.in/
 * Text Domain:       lions-computer-solution
 * License:           GPL-2.0-or-later
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --color-white:       #FFFFFF;
  --color-navy:        #0B2545;
  --color-navy-light:  #163A6B;
  --color-navy-dark:   #071A33;
  --color-yellow:      #FFC300;
  --color-yellow-dark: #E6AF00;
  --color-yellow-glow: rgba(255, 195, 0, 0.25);

  /* Grays / Neutrals */
  --color-bg:          #FFFFFF;
  --color-bg-soft:     #F8FAFF;
  --color-bg-section:  #F0F4FF;
  --color-border:      #E2E8F0;
  --color-border-soft: #F1F5F9;
  --color-text:        #0B2545;
  --color-text-muted:  #64748B;
  --color-text-light:  #94A3B8;

  /* Typography */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes (fluid) */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;
  --fs-hero: clamp(2.5rem, 6vw, 5rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --header-h:      72px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(11, 37, 69, 0.06);
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 4px 20px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 8px 36px rgba(11, 37, 69, 0.13);
  --shadow-xl: 0 16px 56px rgba(11, 37, 69, 0.16);
  --shadow-yellow: 0 6px 28px rgba(255, 195, 0, 0.30);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;

  /* Anti-Gravity Float Amplitudes */
  --float-sm: 12px;
  --float-md: 20px;
  --float-lg: 28px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.lcs-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.lcs-section {
  padding-block: var(--space-2xl);
}

.lcs-section--alt {
  background: var(--color-bg-section);
}

.lcs-section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.lcs-section--dark h1,
.lcs-section--dark h2,
.lcs-section--dark h3,
.lcs-section--dark h4 {
  color: var(--color-white);
}

.lcs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.lcs-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.lcs-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.lcs-flex {
  display: flex;
  align-items: center;
}

.lcs-flex--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lcs-text-center { text-align: center; }
.lcs-text-left   { text-align: left; }

/* Section Labels */
.lcs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-glow);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(255, 195, 0, 0.25);
}

.lcs-section-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.lcs-section-sub {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.lcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
}

.lcs-btn:hover {
  transform: translateY(-2px);
}

.lcs-btn:active {
  transform: translateY(0);
}

/* Primary */
.lcs-btn--primary {
  background: var(--color-yellow);
  color: var(--color-navy);
  box-shadow: var(--shadow-yellow);
}

.lcs-btn--primary:hover {
  background: var(--color-yellow-dark);
  box-shadow: 0 10px 36px rgba(255, 195, 0, 0.45);
}

/* Secondary (outline navy) */
.lcs-btn--secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.lcs-btn--secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Ghost (white outline) */
.lcs-btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.lcs-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

/* Large variant */
.lcs-btn--lg {
  font-size: var(--fs-base);
  padding: 1rem 2.4rem;
}

/* ============================================================
   5. ANTI-GRAVITY KEYFRAME ANIMATIONS
   ============================================================ */

/* Smooth vertical float — three variants for visual layering */
@keyframes lcs-float-a {
  0%,100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, calc(-1 * var(--float-md)), 0); }
}

@keyframes lcs-float-b {
  0%,100% { transform: translate3d(0, calc(-1 * var(--float-sm)), 0); }
  50%      { transform: translate3d(0, var(--float-sm), 0); }
}

@keyframes lcs-float-c {
  0%,100% { transform: translate3d(0, calc(-1 * var(--float-xs, 8px)), 0) rotate(-1deg); }
  50%      { transform: translate3d(0, var(--float-xs, 8px), 0) rotate(1deg); }
}

/* Slow rotation for geometric decorators */
@keyframes lcs-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Entry: fade-up for scroll reveal */
@keyframes lcs-fade-up {
  from { opacity: 0; transform: translate3d(0, 32px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Entry: scale-in for cards */
@keyframes lcs-scale-in {
  from { opacity: 0; transform: scale(0.92) translate3d(0, 16px, 0); }
  to   { opacity: 1; transform: scale(1) translate3d(0, 0, 0); }
}

/* Pulse for status indicators */
@keyframes lcs-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 195, 0, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 195, 0, 0); }
}

/* Hero gradient drift */
@keyframes lcs-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating element helpers */
.lcs-float-a { animation: lcs-float-a 5s ease-in-out infinite; will-change: transform; }
.lcs-float-b { animation: lcs-float-b 7s ease-in-out infinite; will-change: transform; }
.lcs-float-c { animation: lcs-float-c 4.5s ease-in-out infinite; will-change: transform; }

/* Reveal animation — JS adds .is-visible */
.lcs-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

.lcs-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger children */
.lcs-stagger > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.lcs-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.lcs-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.1s; }
.lcs-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.2s; }
.lcs-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.3s; }
.lcs-stagger.is-visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.4s; }
.lcs-stagger.is-visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.5s; }

/* ============================================================
   6. STICKY HEADER
   ============================================================ */
.lcs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-soft);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.lcs-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.lcs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

/* Logo */
.lcs-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.lcs-header__logo img {
  height: 42px;
  width: auto;
}

.lcs-header__logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
}

.lcs-header__logo-sub {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Navigation */
.lcs-nav {
  display: flex;
  align-items: center;
}

.lcs-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lcs-nav a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.lcs-nav a:hover,
.lcs-nav li.current-menu-item > a,
.lcs-nav li.current_page_item > a {
  color: var(--color-yellow-dark);
  background: var(--color-yellow-glow);
}

/* Header CTA */
.lcs-header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.lcs-header__phone {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lcs-header__phone:hover {
  color: var(--color-yellow-dark);
}

/* Mobile hamburger */
.lcs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.lcs-hamburger:hover { background: var(--color-bg-section); }

.lcs-hamburger span {
  display: block;
  height: 2.5px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.lcs-hamburger span:nth-child(1) { width: 22px; }
.lcs-hamburger span:nth-child(2) { width: 16px; }
.lcs-hamburger span:nth-child(3) { width: 22px; }

/* Hamburger open state */
.lcs-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.lcs-hamburger.is-open span:nth-child(2) { opacity: 0; }
.lcs-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Mobile Nav Drawer */
.lcs-nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: var(--space-sm) var(--container-pad) var(--space-md);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

.lcs-nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lcs-nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lcs-nav-mobile a {
  display: block;
  padding: 0.7rem 0.8rem;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.lcs-nav-mobile a:hover {
  background: var(--color-bg-section);
  color: var(--color-yellow-dark);
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.lcs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--color-white);
}

/* Canvas particle background */
#lcs-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Decorative geometric orbs */
.lcs-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.lcs-hero__orb--1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,195,0,0.12) 0%, transparent 70%);
}

.lcs-hero__orb--2 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(11,37,69,0.07) 0%, transparent 70%);
}

.lcs-hero__orb--3 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 12%;
  border: 2px solid rgba(255,195,0,0.15);
  animation: lcs-spin-slow 30s linear infinite;
}

.lcs-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-xl);
}

.lcs-hero__text {
  max-width: 580px;
}

.lcs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
  background: var(--color-yellow-glow);
  border: 1px solid rgba(255,195,0,0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  animation: lcs-fade-up 0.6s var(--ease-out-expo) both;
}

.lcs-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  animation: lcs-pulse 2s ease-in-out infinite;
}

.lcs-hero__title {
  font-size: var(--fs-hero);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  animation: lcs-fade-up 0.7s var(--ease-out-expo) 0.1s both;
}

.lcs-hero__title span {
  color: var(--color-yellow);
  display: inline;
}

.lcs-hero__desc {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  animation: lcs-fade-up 0.7s var(--ease-out-expo) 0.2s both;
}

.lcs-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: lcs-fade-up 0.7s var(--ease-out-expo) 0.3s both;
}

.lcs-hero__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-soft);
  animation: lcs-fade-up 0.7s var(--ease-out-expo) 0.4s both;
}

.lcs-hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--color-navy);
  display: block;
}

.lcs-hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Hero visual panel */
.lcs-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.lcs-hero__mockup {
  position: relative;
  z-index: 2;
}

.lcs-hero__mockup img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Floating satellite cards around hero */
.lcs-hero__float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.9rem 1.2rem;
  z-index: 3;
  min-width: 140px;
}

.lcs-hero__float-card--1 {
  top: 10%;
  left: -20px;
  animation: lcs-float-b 6s ease-in-out infinite;
}

.lcs-hero__float-card--2 {
  bottom: 18%;
  right: -20px;
  animation: lcs-float-a 5s ease-in-out infinite 1s;
}

.lcs-hero__float-card--3 {
  top: 50%;
  right: -30px;
  animation: lcs-float-c 7s ease-in-out infinite 0.5s;
}

.lcs-float-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.lcs-float-card__value {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--color-navy);
}

.lcs-float-card__badge {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

/* ============================================================
   8. SERVICES SECTION & CARDS
   ============================================================ */
.lcs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.lcs-service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.lcs-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-yellow-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: inherit;
}

.lcs-service-card:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 195, 0, 0.35);
}

.lcs-service-card:hover::before {
  opacity: 1;
}

.lcs-service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  transition: background var(--transition-base), transform var(--transition-base);
}

.lcs-service-card:hover .lcs-service-card__icon {
  background: var(--color-yellow);
  transform: scale(1.08) rotate(-4deg);
}

.lcs-service-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.lcs-service-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.lcs-service-card__link {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-yellow-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.lcs-service-card:hover .lcs-service-card__link {
  gap: 0.6rem;
}

/* ============================================================
   9. VENTURES / SUB-BRANDS SECTION
   ============================================================ */
.lcs-ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.lcs-venture-card {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base);
}

.lcs-venture-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,195,0,0.08);
  pointer-events: none;
}

.lcs-venture-card:hover {
  transform: translate3d(0, -4px, 0);
}

.lcs-venture-card__name {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.lcs-venture-card__tagline {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.lcs-venture-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* ============================================================
   10. PORTFOLIO / PHOTOGRAPHY GRID
   ============================================================ */
.lcs-portfolio-grid {
  columns: 3;
  column-gap: var(--space-md);
}

.lcs-portfolio-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

.lcs-portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}

.lcs-portfolio-item:hover img {
  transform: scale(1.04);
}

.lcs-portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.lcs-portfolio-item:hover .lcs-portfolio-item__overlay {
  opacity: 1;
}

.lcs-portfolio-item__title {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-white);
}

/* ============================================================
   11. REELS CONTAINER
   ============================================================ */
.lcs-reels-container {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.lcs-reels-container::-webkit-scrollbar {
  height: 4px;
}

.lcs-reels-container::-webkit-scrollbar-track {
  background: transparent;
}

.lcs-reels-container::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

.lcs-reel-card {
  flex: 0 0 260px;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: var(--shadow-lg);
  background: var(--color-navy);
  cursor: pointer;
}

.lcs-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lcs-reel-card:hover .lcs-reel-video {
  transform: scale(1.04);
}

.lcs-reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(7,26,51,0.92), transparent);
  pointer-events: none;
}

.lcs-reel-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.lcs-reel-title {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.lcs-reels-hint {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

/* ============================================================
   12. SERVER STATUS WIDGET
   ============================================================ */
.lcs-status-bar {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--color-navy-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  flex-wrap: wrap;
}

.lcs-status-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lcs-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: lcs-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.lcs-status-dot--warn { background: #f59e0b; }
.lcs-status-dot--down { background: #ef4444; animation: none; }

.lcs-status-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1px;
}

.lcs-status-value {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-white);
  display: block;
}

/* ============================================================
   13. QUICK CONNECT POPUP MODAL
   ============================================================ */
.lcs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 51, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lcs-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.lcs-modal {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  max-width: 540px;
  width: 100%;
  position: relative;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.35s var(--ease-spring);
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.lcs-modal-overlay.is-open .lcs-modal {
  transform: scale(1) translateY(0);
}

.lcs-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg-section);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lcs-modal__close:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.lcs-modal__title {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.lcs-modal__sub {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================================
   14. FORM ELEMENTS
   ============================================================ */
.lcs-form-group {
  margin-bottom: var(--space-md);
}

.lcs-form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.lcs-form-input,
.lcs-form-select,
.lcs-form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.lcs-form-input:focus,
.lcs-form-select:focus,
.lcs-form-textarea:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 4px var(--color-yellow-glow);
}

.lcs-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.lcs-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230B2545'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

/* Success message */
.lcs-form-success {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  display: none;
  margin-top: var(--space-sm);
}

.lcs-form-success.is-visible { display: block; }

/* ============================================================
   15. FAQ ACCORDION
   ============================================================ */
.lcs-faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.lcs-faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.lcs-faq-item.is-open {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 195, 0, 0.4);
}

.lcs-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-navy);
  transition: color var(--transition-fast);
}

.lcs-faq-item.is-open .lcs-faq-trigger {
  color: var(--color-yellow-dark);
}

.lcs-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-spring), background var(--transition-base);
}

.lcs-faq-item.is-open .lcs-faq-icon {
  transform: rotate(45deg);
  background: var(--color-yellow);
}

.lcs-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.lcs-faq-body__inner {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ============================================================
   16. PAY NOW PAGE
   ============================================================ */
.lcs-pay-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: var(--space-xl) var(--container-pad);
  padding-top: calc(var(--header-h) + var(--space-xl));
  text-align: center;
}

.lcs-pay-hero h1 {
  color: var(--color-white);
  font-size: var(--fs-2xl);
  margin-bottom: 0.5rem;
}

.lcs-pay-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-base);
}

.lcs-pay-container {
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-xl) var(--container-pad);
}

.lcs-pay-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-soft);
}

.lcs-gateway-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.lcs-gateway-option {
  padding: var(--space-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--transition-base), background var(--transition-base);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.lcs-gateway-option.is-active {
  border-color: var(--color-yellow);
  background: var(--color-yellow-glow);
  color: var(--color-navy);
}

.lcs-amount-display {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--color-navy);
  text-align: center;
  margin: var(--space-md) 0;
}

.lcs-amount-display small {
  font-size: var(--fs-xl);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   17. CLIENT DASHBOARD
   ============================================================ */
.lcs-dashboard {
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  min-height: 100vh;
  background: var(--color-bg-soft);
}

.lcs-dashboard__header {
  background: var(--color-navy);
  padding: var(--space-xl) var(--container-pad);
  margin-bottom: var(--space-xl);
}

.lcs-dashboard__welcome {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.lcs-dashboard__sub {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-base);
}

.lcs-dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.lcs-dashboard__sidebar {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
}

.lcs-dashboard__sidebar-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-sm);
}

.lcs-dashboard__sidebar-name {
  text-align: center;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.lcs-dashboard__sidebar-role {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-soft);
}

.lcs-dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
  text-decoration: none;
}

.lcs-dashboard-nav a:hover,
.lcs-dashboard-nav a.is-active {
  background: var(--color-yellow-glow);
  color: var(--color-navy);
}

.lcs-dashboard__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.lcs-dash-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-soft);
}

.lcs-dash-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Metric gauges (server uptime) */
.lcs-gauge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.lcs-gauge-item {
  text-align: center;
}

.lcs-gauge-value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--color-navy);
  display: block;
}

.lcs-gauge-value--green { color: #16a34a; }
.lcs-gauge-value--yellow { color: var(--color-yellow-dark); }

.lcs-gauge-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Proof download boxes */
.lcs-proof-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lcs-proof-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
}

.lcs-proof-name {
  font-weight: 600;
  color: var(--color-navy);
  font-size: var(--fs-sm);
}

.lcs-proof-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   18. SINGLE SERVICE PAGE
   ============================================================ */
.lcs-service-hero {
  background: var(--color-navy);
  padding: var(--space-xl) var(--container-pad);
  padding-top: calc(var(--header-h) + var(--space-xl));
}

.lcs-service-hero__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.lcs-service-hero__title {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 720px;
}

.lcs-service-content {
  max-width: 860px;
  margin-inline: auto;
  padding: var(--space-2xl) var(--container-pad);
}

.lcs-service-content p {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.lcs-service-content h2,
.lcs-service-content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   19. STICKY CALL BAR (FOOTER)
   ============================================================ */
.lcs-sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--color-navy);
  display: none; /* shown on mobile only */
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.9rem var(--container-pad);
  border-top: 2px solid var(--color-yellow);
}

.lcs-sticky-call a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 0.7rem;
  border-radius: var(--radius-full);
  text-decoration: none;
}

.lcs-sticky-call__call {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.lcs-sticky-call__wa {
  background: #25D366;
  color: var(--color-white);
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.lcs-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,0.72);
}

.lcs-footer__main {
  padding: var(--space-2xl) 0 var(--space-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.lcs-footer__brand-name {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.lcs-footer__tagline {
  font-size: var(--fs-sm);
  color: var(--color-yellow);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.lcs-footer__desc {
  font-size: var(--fs-sm);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.lcs-footer__socials {
  display: flex;
  gap: 0.6rem;
}

.lcs-footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.lcs-footer__social-link:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-2px);
}

.lcs-footer__col-title {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.lcs-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lcs-footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lcs-footer__links a:hover {
  color: var(--color-yellow);
}

.lcs-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

.lcs-footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.lcs-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

.lcs-footer__bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.lcs-footer__bottom a:hover {
  color: var(--color-yellow);
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.lcs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.lcs-badge--yellow { background: var(--color-yellow); color: var(--color-navy); }
.lcs-badge--navy  { background: var(--color-navy); color: var(--color-white); }
.lcs-badge--green { background: #dcfce7; color: #16a34a; }

.lcs-divider {
  border: none;
  border-top: 1px solid var(--color-border-soft);
  margin-block: var(--space-xl);
}

.lcs-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;
}

/* ============================================================
   22. MOBILE RESPONSIVENESS OVERRIDES
   ALL parallax / anti-gravity animations disabled on mobile.
   ============================================================ */
@media (max-width: 1024px) {
  .lcs-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .lcs-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcs-ventures-grid {
    grid-template-columns: 1fr;
  }

  .lcs-portfolio-grid {
    columns: 2;
  }

  .lcs-hero__content {
    grid-template-columns: 1fr;
  }

  .lcs-hero__visual {
    display: none;
  }

  .lcs-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* DISABLE all anti-gravity animations for mobile performance */
  .lcs-float-a,
  .lcs-float-b,
  .lcs-float-c,
  .lcs-hero__float-card,
  .lcs-hero__orb--3 {
    animation: none !important;
    transform: none !important;
  }

  /* Simple fade-in fallback on mobile */
  .lcs-reveal {
    transition: opacity 0.45s ease;
    transform: none;
  }

  .lcs-stagger > * {
    transform: none;
    transition: opacity 0.45s ease;
  }

  /* Show mobile nav, hide desktop */
  .lcs-nav { display: none; }
  .lcs-hamburger { display: flex; }
  .lcs-header__phone { display: none; }
  .lcs-nav-mobile { display: block; }
  .lcs-header__cta .lcs-btn { display: none; }

  /* Show sticky call bar on mobile */
  .lcs-sticky-call { display: flex; }

  /* Layout adjustments */
  .lcs-services-grid,
  .lcs-grid-2,
  .lcs-grid-3,
  .lcs-grid-4,
  .lcs-ventures-grid {
    grid-template-columns: 1fr;
  }

  .lcs-portfolio-grid {
    columns: 1;
  }

  .lcs-hero__stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }

  .lcs-footer__main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .lcs-status-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .lcs-gateway-toggle {
    grid-template-columns: 1fr;
  }

  .lcs-gauge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lcs-modal {
    padding: var(--space-md);
  }

  .lcs-section-title {
    font-size: var(--fs-xl);
  }

  .lcs-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .lcs-pay-form {
    padding: var(--space-md);
  }

  .lcs-hero {
    min-height: auto;
    padding-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
    --fs-hero: clamp(1.9rem, 10vw, 2.5rem);
  }

  .lcs-btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: var(--fs-sm);
  }

  .lcs-hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lcs-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
