/*
Theme Name: INFRASYNE Technologies
Theme URI: https://infrasynetech.com
Author: INFRASYNE Technologies
Author URI: https://infrasynetech.com
Description: A child theme of Extendable, customised for INFRASYNE Technologies — a UAE-based provider of office automation, IT infrastructure, and security solutions.
Template: extendable
Version: 1.0.0
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infrasyne
*/

/* All visual styling is handled by theme.json + parent Extendable theme. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #381d92;
  --primary-rgb: 56, 29, 146;
  --secondary: #1C0A63;
  --secondary-rgb: 28, 10, 99;
  --accent: #0EA5E9;
  --accent-rgb: 14, 165, 233;
  --foreground: #0B0620;
  --foreground-rgb: 11, 6, 32;
  --background: #FFFFFF;
  --background-alt: #F2F2FA;
  --card-shadow: 0 12px 34px -10px rgba(11, 6, 32, 0.06);
  --card-shadow-hover: 0 22px 48px -12px rgba(56, 29, 146, 0.15);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 1. Global Typography Reset & Custom Circuit Background */
body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #FFFFFF !important;
  color: #0B0620 !important;
}

/* Custom Circuit Background wrapper styling */
.infrasyne-circuit-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(circle at 85% 85%, rgba(239, 68, 68, 0.02) 0%, transparent 45%),
    radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.02) 0%, transparent 45%),
    linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
}

.infrasyne-circuit-bg svg {
  width: 100%;
  height: 100%;
  opacity: 0.45;
  /* Increased opacity for clear visibility */
}

/* Base style for all lines */
.circuit-line {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: 0.28;
  /* Increased opacity for clear visibility */
  stroke-dasharray: 80 120;
  animation: trace-flow 12s linear infinite;
}

.circuit-line.green {
  stroke: #10b981;
  animation-duration: 9s;
}

.circuit-line.blue {
  stroke: #0ea5e9;
  animation-duration: 10s;
}

.circuit-line.red {
  stroke: #ef4444;
  animation-duration: 12s;
  animation-direction: reverse;
}

@keyframes trace-flow {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* Pulsing Node Circles */
.circuit-node {
  fill-opacity: 0.15;
  stroke-width: 1.5;
  transform-origin: center;
  animation: pulse-node 3.5s infinite ease-in-out;
}

.circuit-node.green {
  fill: #10b981;
  stroke: #10b981;
  animation-delay: 0.5s;
}

.circuit-node.blue {
  fill: #0ea5e9;
  stroke: #0ea5e9;
  animation-delay: 1.2s;
}

.circuit-node.red {
  fill: #ef4444;
  stroke: #ef4444;
  animation-delay: 1.8s;
}

@keyframes pulse-node {

  0%,
  100% {
    r: 4px;
    fill-opacity: 0.15;
    stroke-width: 1.5;
  }

  50% {
    r: 7px;
    fill-opacity: 0.6;
    stroke-width: 3;
    filter: drop-shadow(0 0 4px currentColor);
  }
}

/* Flickering Grid Rectangles */
.circuit-grid {
  fill-opacity: 0.08;
  stroke-width: 0.5;
  transition: all 0.3s ease;
}

.circuit-grid.green {
  fill: #10b981;
  stroke: rgba(16, 185, 129, 0.2);
  animation: flicker-grid 4.5s infinite ease-in-out;
}

.circuit-grid.blue {
  fill: #0ea5e9;
  stroke: rgba(14, 165, 233, 0.2);
  animation: flicker-grid 5.5s infinite ease-in-out 1s;
}

.circuit-grid.red {
  fill: #ef4444;
  stroke: rgba(239, 68, 68, 0.2);
  animation: flicker-grid 6.5s infinite ease-in-out 2s;
}

@keyframes flicker-grid {

  0%,
  100% {
    fill-opacity: 0.05;
  }

  45% {
    fill-opacity: 0.05;
  }

  50% {
    fill-opacity: 0.45;
    filter: drop-shadow(0 0 2px currentColor);
  }

  55% {
    fill-opacity: 0.05;
  }

  60% {
    fill-opacity: 0.25;
  }

  65% {
    fill-opacity: 0.05;
  }
}

body,
p,
li,
input,
textarea,
select {
  font-family: var(--font-body) !important;
  color: #0B0620 !important;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-site-title,
.wp-block-site-title a,
strong,
.wp-block-heading {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0B0620 !important;
}

/* 2. Cover / Hero Section enhancements */
.wp-block-cover {
  position: relative;
  overflow: hidden;
}

.wp-block-cover::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--secondary-rgb), 0.05) 90.2%);
  pointer-events: none;
  z-index: 1;
}

.wp-block-cover__inner-container h1,
.wp-block-cover__inner-container h2,
.wp-block-cover__inner-container p {
  text-shadow: 0 2px 10px rgba(11, 6, 32, 0.15);
}

/* 3. Navigation Header & Footer Styles */
header.wp-block-group {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid rgba(11, 6, 32, 0.06) !important;
  transition: all 0.3s ease;
}

.wp-block-navigation-item__content {
  position: relative;
  color: #0B0620 !important;
  transition: color 0.25s ease !important;
}

.wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wp-block-navigation-item__content:hover {
  color: var(--accent) !important;
}

.wp-block-navigation-item__content:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

footer.wp-block-group {
  position: relative;
  background: #F2F2FA !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer.wp-block-group a {
  transition: color 0.25s ease;
  text-decoration: none;
  color: #B0B3C6 !important;
}

footer.wp-block-group a:hover {
  color: var(--accent) !important;
}

/* Override WordPress Light Background utilities in dark theme to let the animated background show through clearly */
.has-background-alt-background-color,
section.has-background-alt-background-color,
.wp-block-group.has-background-alt-background-color {
  background-color: rgba(255, 255, 255, 0.015) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.has-background-background-color,
.wp-block-group.has-background-background-color,
.wp-block-group.has-background,
section.wp-block-group {
  background-color: transparent !important;
}

/* Make Cover/Hero backgrounds transparent enough to let the background animation show through */
.wp-block-cover__background.has-background-dim {
  background-color: rgba(3, 5, 20, 0.65) !important;
  opacity: 1 !important;
}

/* 4. Service & Product Cards (Group / Column blocks) */
.wp-block-column>.wp-block-group.has-border-color,
.wp-block-group.service-block {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.wp-block-column>.wp-block-group.has-border-color:hover,
.wp-block-group.service-block:hover {
  transform: translateY(-8px);
  background-color: rgba(14, 22, 54, 0.7) !important;
  border-color: rgba(14, 165, 233, 0.35) !important;
  box-shadow: 0 25px 50px rgba(14, 165, 233, 0.12) !important;
}

/* Custom icon sizes and hover animations inside cards */
.wp-block-group.service-block p.has-x-large-font-size,
.wp-block-column>.wp-block-group p.has-x-large-font-size {
  font-size: 2.75rem !important;
  margin-bottom: 1.5rem !important;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wp-block-column>.wp-block-group:hover p.has-x-large-font-size,
.wp-block-group.service-block:hover p.has-x-large-font-size {
  transform: scale(1.15) rotate(5deg);
}

/* 5. Custom Button Styling */
.wp-block-button__link {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: none !important;
  padding: 0.75rem 1.85rem !important;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.15);
}

.wp-block-button__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
}

.wp-block-button__link:active {
  transform: translateY(-1px);
}

/* Outline-like styling for alternate button */
.wp-block-button__link.has-border-color {
  background-color: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  box-shadow: none !important;
}

.wp-block-button__link.has-border-color:hover {
  background-color: #FFFFFF !important;
  color: #030514 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2) !important;
}

/* 6. Form Styling & Interactions */
.infrasyne-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.infrasyne-contact-form p {
  margin: 0;
}

.infrasyne-contact-form label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 0.5rem;
}

.infrasyne-contact-form input,
.infrasyne-contact-form textarea {
  background-color: #F2F2FA !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  padding: 0.85rem 1.15rem !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-family: var(--font-body) !important;
  color: #0B0620 !important;
  font-size: 0.95rem;
}

.infrasyne-contact-form input:focus,
.infrasyne-contact-form textarea:focus {
  border-color: var(--accent) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2) !important;
  outline: none !important;
}

.infrasyne-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  padding: 0.9rem 2.25rem !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: auto !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.25);
}


/* ================================================================
   7. PAGE TRANSITION EFFECTS
   ================================================================ */

/* ------------------------------------------------------------------
   Premium Vibrant Color Scheme – overrides
   ------------------------------------------------------------------ */
:root {
  --primary: #6C5CE7;
  --primary-rgb: 108, 92, 231;
  --secondary: #FF6B6B;
  --secondary-rgb: 255, 107, 107;
  --accent: #00CEC9;
  --accent-rgb: 0, 206, 201;
  --foreground: #212529;
  --foreground-rgb: 33, 37, 41;
  --background: #F7F9FC;
  --background-alt: #E8F0FE;
}

/* Circuit line gradients */
.circuit-line.green {
  stroke: linear-gradient(90deg, #00FFC8, #00A3E0);
  stroke-opacity: 0.22;
}

.circuit-line.blue {
  stroke: linear-gradient(90deg, #00CEC9, #0096C7);
  stroke-opacity: 0.22;
}

.circuit-line.red {
  stroke: linear-gradient(90deg, #FF6B6B, #FF8C42);
  stroke-opacity: 0.22;
}

/* Grid rectangle colors */
.circuit-grid.green {
  fill: #00FFC8;
  stroke: rgba(0, 255, 200, 0.2);
}

.circuit-grid.blue {
  fill: #00CEC9;
  stroke: rgba(0, 206, 201, 0.2);
}

.circuit-grid.red {
  fill: #FF6B6B;
  stroke: rgba(255, 107, 107, 0.2);
}

/* Typography */
body,
p,
li,
input,
textarea,
select {
  color: var(--foreground) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-site-title,
.wp-block-site-title a,
strong,
.wp-block-heading {
  color: var(--primary) !important;
}

/* Links */
a {
  color: var(--accent) !important;
}

a:hover {
  color: var(--secondary) !important;
}

/* Buttons */
.wp-block-button__link {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #FFF;
}

.wp-block-button__link:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* Service cards */
.wp-block-group.service-block {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 206, 201, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.wp-block-group.service-block:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 206, 201, 0.12);
}

/* Forms */
.infrasyne-contact-form input,
.infrasyne-contact-form textarea {
  background: #E8F0FE;
  border-color: rgba(0, 206, 201, 0.15);
  color: var(--foreground);
}

.infrasyne-contact-form input:focus,
.infrasyne-contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 206, 201, 0.2);
}

/* Header & Footer */
header.wp-block-group {
  background: #FFF;
  border-bottom: 1px solid rgba(33, 37, 41, 0.08);
}

footer.wp-block-group {
  background: var(--background-alt);
}

/* Separators */
.wp-block-separator {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Image hover lift */
.wp-block-image img:hover {
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.12);
}

/* ── 7a. Page loader (first visit) + transition overlay (every nav) ── */

/* Full animated loader — shown only on the first visit per session.
   Controlled by #infrasyne-loader (built in page-loader.js). */
#infrasyne-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#infrasyne-loader.isl-done {
  opacity: 0;
  visibility: hidden;
}

.isl-backdrop {
  position: absolute;
  inset: 0;
  background: #0b0f19;
  background-image:
    radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 50% 70%, rgba(6, 182, 212, 0.12) 0%, transparent 55%);
}

.isl-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  text-align: center;
}

.isl-ring-outer {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.isl-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #8B5CF6;
  border-right-color: #06B6D4;
  animation: isl-spin 1.1s linear infinite;
}

.isl-ring-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.35);
  animation: isl-pulse 2.2s ease-out infinite;
}

.isl-logo-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isl-logo-svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.55));
}

.isl-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.32em;
  color: #ffffff;
}

.isl-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.85);
}

.isl-progress-track {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.isl-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #8B5CF6, #06B6D4);
  border-radius: inherit;
  transition: width 0.25s ease;
}

.isl-loading-text {
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(156, 163, 175, 0.7);
  min-height: 1em;
}

@keyframes isl-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes isl-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Quick fade overlay — shown on every navigation AFTER the first visit.
   Smaller, faster (320ms), no logo, no progress bar. */
#infrasyne-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0b0f19;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

#infrasyne-transition-overlay.isl-overlay-active {
  opacity: 1;
  pointer-events: all;
}

/* Legacy class kept for any page that still adds it (no-op now). */
#infrasyne-page-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FFFFFF;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-loaded #infrasyne-page-overlay {
  opacity: 0;
}

body.page-leaving #infrasyne-page-overlay {
  opacity: 1;
  pointer-events: all;
}

/* ── 7b. Scroll-Reveal Animations ─────────────────────────── */
.sr-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ── 7c. Header scroll shadow ─────────────────────────────── */
header.wp-block-group.header-scrolled {
  box-shadow: 0 4px 24px rgba(11, 6, 32, 0.08) !important;
}

/* ── 7d. Button ripple ────────────────────────────────────── */
.wp-block-button__link {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-spread 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-spread {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ── 7e. Smooth hover lift on images ─────────────────────── */
.wp-block-image img {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.wp-block-image img:hover {
  transform: scale(1.025);
  box-shadow: 0 12px 32px rgba(56, 29, 146, 0.12);
}

/* ── 7f. Smooth section dividers ─────────────────────────── */
.wp-block-separator {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56, 29, 146, 0.2), transparent);
  margin: 2rem auto;
}

/* ================================================================
   8. MODERN LANDING PAGE (DARK FUTURISTIC THEME)
   ================================================================ */
.modern-landing-page {
  background-color: #0b0f19 !important;
  color: #f3f4f6 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  --lp-primary: #8B5CF6;
  --lp-primary-rgb: 139, 92, 246;
  --lp-secondary: #06B6D4;
  --lp-secondary-rgb: 6, 182, 212;
  --lp-bg: #0B0F19;
  --lp-bg-card: #161c2a;
  --lp-text-main: #f3f4f6;
  --lp-text-muted: #9ca3af;
  --lp-border: rgba(255, 255, 255, 0.08);
}

/* Scope headings and fonts */
.modern-landing-page h1,
.modern-landing-page h2,
.modern-landing-page h3,
.modern-landing-page h4,
.modern-landing-page h5,
.modern-landing-page h6 {
  font-family: 'Outfit', sans-serif !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  margin-top: 0;
}

/* Scoped links */
.modern-landing-page a {
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

/* Scoped Container sizes */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* 1. Header (Sticky Glassmorphic) */
html {
  scroll-behavior: smooth;
}

.lp-hero,
.lp-services,
.lp-about,
.lp-features,
.lp-contact {
  scroll-margin-top: 80px;
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.78) 100%);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(6, 182, 212, 0.18);
  padding: 1.25rem 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.lp-header.scrolled {
  padding: 0.85rem 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.88) 100%);
  box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.25), 0 4px 20px -8px rgba(139, 92, 246, 0.2);
  border-bottom: 1px solid rgba(139, 92, 246, 0.35);
}

.lp-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.lp-logo-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  background: transparent !important;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  text-decoration: none;
}

.lp-logo-circuit-img {
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lp-logo-text-img {
  height: 42px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Scrolled states for shrinking header */
.lp-header.scrolled .lp-logo-circuit-img {
  width: 42px !important;
  height: 42px !important;
}

.lp-header.scrolled .lp-logo-text-img {
  height: 34px !important;
}

/* Mobile responsive sizing for logo images */
@media(max-width: 600px) {
  .lp-logo-circuit-img {
    width: 38px !important;
    height: 38px !important;
  }

  .lp-logo-text-img {
    height: 30px !important;
  }
}

@media(max-width: 400px) {
  .lp-logo-circuit-img {
    width: 32px !important;
    height: 32px !important;
  }

  .lp-logo-text-img {
    height: 24px !important;
  }

  .lp-header-wrap {
    gap: 0.25rem !important;
  }
}

.lp-logo-diamond-1 {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: var(--lp-primary);
  transform: rotate(45deg);
  border-radius: 2px;
  opacity: 0.85;
}

.lp-logo-diamond-2 {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  background: var(--lp-secondary);
  transform: rotate(45deg);
  border-radius: 2px;
  mix-blend-mode: screen;
}

.lp-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff !important;
  letter-spacing: -0.03em;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

@media(max-width: 1100px) {
  .lp-nav {
    gap: 1.25rem !important;
  }

  .lp-nav-link {
    font-size: 0.9rem !important;
  }
}

.lp-nav-link {
  font-weight: 500;
  color: var(--lp-text-muted) !important;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.lp-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-secondary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lp-nav-link:hover {
  color: #ffffff !important;
}

.lp-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav Actions */
.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}

/* Premium Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.lp-btn-gradient {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 20px -2px rgba(139, 92, 246, 0.35);
  border: none;
}

.lp-btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5), 0 0 12px rgba(6, 182, 212, 0.3);
}

.lp-btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid var(--lp-primary);
}

.lp-btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--lp-secondary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

/* 2. Hero Section */
.lp-hero {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background: radial-gradient(circle at 50% -20%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--lp-bg), transparent);
  pointer-events: none;
}

.lp-hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  max-width: 850px;
  margin: 0 auto 1.5rem auto;
}

.lp-hero-subtitle {
  font-size: 1.25rem;
  color: var(--lp-text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.lp-hero-btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

@media(max-width: 768px) {
  .lp-hero-title {
    font-size: 2.5rem;
  }

  .lp-hero-subtitle {
    font-size: 1.1rem;
  }

  .lp-hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .lp-hero-btns .lp-btn {
    width: auto;
    min-width: 200px;
  }
}

/* 3. Services Section */
.lp-services {
  padding: 6rem 0;
  background: radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 45%);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--lp-text-muted);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.lp-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media(max-width: 991px) {
  .lp-cards-row {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.lp-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.lp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.lp-card-content {
  position: relative;
  z-index: 1;
}

.lp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15), 0 0 30px -5px rgba(6, 182, 212, 0.08);
}

.lp-card:hover::before {
  opacity: 1;
}

.lp-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--lp-primary);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.4s ease;
}

.lp-card:hover .lp-card-icon {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1) rotate(5deg);
  border-color: var(--lp-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.lp-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.lp-card-text {
  color: var(--lp-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* 4. About Us Section */
.lp-about {
  padding: 6rem 0;
  background: radial-gradient(circle at 10% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 45%);
}

.lp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media(max-width: 991px) {
  .lp-about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.lp-about-label {
  color: var(--lp-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
}

.lp-about-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.lp-about-text {
  color: var(--lp-text-muted);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.lp-about-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lp-primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-about-link:hover {
  color: var(--lp-secondary) !important;
  transform: translateX(5px);
}

/* Interactive SVG nodes style */
.lp-nodes-graphic {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
}

.about-node-pulse {
  fill: #8B5CF6;
  animation: svg-pulse 3s infinite ease-in-out;
}

.about-node-pulse-cyan {
  fill: #06B6D4;
  animation: svg-pulse 3.5s infinite ease-in-out 1s;
}

@keyframes svg-pulse {

  0%,
  100% {
    r: 6px;
    fill-opacity: 0.3;
  }

  50% {
    r: 10px;
    fill-opacity: 0.95;
    filter: drop-shadow(0 0 6px #8B5CF6);
  }
}

.about-line-anim {
  stroke-dasharray: 10 15;
  animation: svg-line-dash 15s linear infinite;
}

@keyframes svg-line-dash {
  from {
    stroke-dashoffset: 200;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* 5. Stats Section */
.lp-stats {
  padding: 5rem 0;
  background: rgba(13, 19, 34, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media(max-width: 768px) {
  .lp-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.lp-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-stat-num {
  font-size: 3.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.lp-stat-label {
  color: var(--lp-text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* 6. Contact Us Section */
.lp-contact {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

@media(max-width: 991px) {
  .lp-contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Scoped contact inputs */
.modern-landing-page input.lp-input,
.modern-landing-page textarea.lp-textarea,
.modern-landing-page select.lp-input {
  width: 100%;
  background-color: rgba(22, 28, 42, 0.6) !important;
  border: 1px solid var(--lp-border) !important;
  border-radius: 10px !important;
  padding: 0.9rem 1.2rem !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box;
}

.modern-landing-page select.lp-input {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.1rem center !important;
  cursor: pointer !important;
}

.modern-landing-page select.lp-input option {
  background-color: #161c2a;
  color: #f3f4f6;
}

.modern-landing-page input.lp-input:focus,
.modern-landing-page textarea.lp-textarea:focus,
.modern-landing-page select.lp-input:focus {
  border-color: var(--lp-primary) !important;
  background-color: rgba(22, 28, 42, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.25) !important;
  outline: none !important;
}

.lp-form-group {
  margin-bottom: 1.5rem;
}

.lp-form-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lp-text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

/* Contact Info Column */
.lp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.lp-contact-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.lp-contact-desc {
  color: var(--lp-text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lp-contact-item {
  display: flex;
  gap: 1.25rem;
}

.lp-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--lp-secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--lp-text-muted) !important;
  font-weight: 600 !important;
}

.lp-contact-detail p {
  color: #ffffff !important;
  font-size: 1rem;
  margin: 0;
}

/* 7. Footer */
.lp-footer {
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid var(--lp-border);
  padding: 5rem 0 2.5rem 0;
  color: var(--lp-text-muted);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media(max-width: 768px) {
  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.lp-footer-desc {
  line-height: 1.6;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(229, 231, 235, 0.7);
}

.lp-footer-title {
  font-size: 1.1rem;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
}

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lp-footer .lp-footer-links li a.lp-footer-link,
.lp-footer .lp-footer-links li span.lp-footer-link {
  color: #f3f4f6 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  opacity: 0.85 !important;
  display: inline-block !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.lp-footer .lp-footer-links li a.lp-footer-link:hover {
  color: #22d3ee !important;
  opacity: 1 !important;
  transform: translateX(5px) !important;
}

.lp-footer-socials {
  display: flex;
  gap: 1rem;
}

.lp-footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-text-muted) !important;
}

.lp-footer-social:hover {
  background: var(--lp-primary);
  color: #ffffff !important;
  border-color: var(--lp-primary);
  transform: translateY(-2px);
}

.lp-footer-bottom {
  border-top: 1px solid var(--lp-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

@media(max-width: 576px) {
  .lp-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* 8. Scroll & Load Reveal CSS Hooks
   Elements start visible — JS adds 'js-reveal-ready' to <body>
   which activates the hidden+transition state.
   This prevents blank pages if JS loads slowly.
*/
.js-reveal-ready .lp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-reveal.lp-revealed,
.js-reveal-ready .lp-reveal.lp-revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* Staggered delay classes */
.lp-delay-0 {
  transition-delay: 0ms;
}

.lp-delay-1 {
  transition-delay: 150ms;
}

.lp-delay-2 {
  transition-delay: 300ms;
}

.lp-delay-3 {
  transition-delay: 450ms;
}

.lp-delay-4 {
  transition-delay: 600ms;
}


/* Horizontal slide reveal */
.js-reveal-ready .lp-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-reveal-left.lp-revealed,
.js-reveal-ready .lp-reveal-left.lp-revealed {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.js-reveal-ready .lp-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-reveal-right.lp-revealed,
.js-reveal-ready .lp-reveal-right.lp-revealed {
  opacity: 1 !important;
  transform: translateX(0) !important;
}


/* ================================================================
   9. PARTICLE CANVAS
   ================================================================ */
#lp-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 60% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 55%),
    #0b0f19;
}

/* ================================================================
   10. HERO SECTION EXTRAS
   ================================================================ */
.lp-hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.lp-hero-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.12);
  top: -100px;
  left: 50%;
  transform: translateX(-60%);
}

.lp-hero-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  top: 40%;
  right: 5%;
}

.lp-hero>.lp-container {
  position: relative;
  z-index: 1;
}

/* Hero Badge */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #a78bfa;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.lp-badge-text {
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Menlo, Consolas, 'Courier New', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #2D5BFF;
  white-space: nowrap;
}

.lp-badge-dot {
  width: 7px;
  height: 7px;
  background: #8B5CF6;
  border-radius: 50%;
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Hero large buttons */
.lp-btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  gap: 0.5rem;
}

/* Hero Metrics Bar */
.lp-hero-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 4rem;
  background: rgba(22, 28, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.lp-hero-metric {
  flex: 1;
  text-align: center;
}

.lp-hero-metric-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.lp-hero-metric-label {
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-hero-metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

@media(max-width: 600px) {
  .lp-hero-metrics {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .lp-hero-metric {
    flex: 1 1 120px !important;
  }

  .lp-hero-metric-divider {
    display: none;
  }

  .lp-hero-metric {
    flex: 0 0 45%;
  }
}

/* Section label */
.lp-section-label {
  display: inline-block;
  color: var(--lp-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

/* ================================================================
   11. MARQUEE STRIP
   ================================================================ */
.lp-marquee-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: rgba(13, 19, 34, 0.3);
}

.lp-marquee-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(156, 163, 175, 0.5);
  margin-bottom: 1.25rem;
}

.lp-marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.lp-marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.lp-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 120px;
  height: 45px;
}

.lp-marquee-logo {
  max-height: 32px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.lp-marquee-logo:hover {
  opacity: 1;
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================================================================
   12. SERVICE CARDS — TAGS + ICON VARIANTS
   ================================================================ */
.lp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.lp-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: #a78bfa;
  letter-spacing: 0.04em;
}

.lp-icon-purple {
  color: #8B5CF6 !important;
  border-color: rgba(139, 92, 246, 0.25) !important;
}

.lp-icon-cyan {
  color: #06B6D4 !important;
  background: rgba(6, 182, 212, 0.08) !important;
  border-color: rgba(6, 182, 212, 0.25) !important;
}

/* ================================================================
   13. ABOUT — CHECKLIST
   ================================================================ */
.lp-about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.lp-about-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--lp-text-muted);
}

.lp-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-nodes-wrapper {
  position: relative;
  background: rgba(22, 28, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(6px);
}

/* ================================================================
   14. FEATURES SECTION
   ================================================================ */
.lp-features {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 65%);
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media(max-width: 991px) {
  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .lp-features-grid {
    grid-template-columns: 1fr;
  }
}

.lp-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(22, 28, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.35s ease;
}

.lp-feature-item:hover {
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.08);
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #8B5CF6;
  transition: all 0.3s ease;
}

.lp-feature-item:hover .lp-feature-icon {
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
}

.lp-feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff !important;
}

.lp-feature-text {
  font-size: 0.88rem;
  color: var(--lp-text-muted);
  line-height: 1.55;
  margin: 0 !important;
}

/* ================================================================
   15. TESTIMONIALS SECTION
   ================================================================ */
.lp-testimonials {
  padding: 6rem 0;
  background: rgba(13, 19, 34, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media(max-width: 991px) {
  .lp-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
}

.lp-testimonial {
  background: var(--lp-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s ease;
}

.lp-testimonial:hover {
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.lp-testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.lp-testimonial-text {
  color: var(--lp-text-muted) !important;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0 !important;
  flex: 1;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.lp-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #06B6D4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.lp-testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.lp-testimonial-role {
  font-size: 0.78rem;
  color: var(--lp-text-muted);
}

/* ================================================================
   16. CTA BANNER
   ================================================================ */
.lp-cta-section {
  padding: 5rem 0;
}

.lp-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
}

.lp-cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lp-cta-content {
  position: relative;
  z-index: 1;
}

.lp-cta-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lp-cta-subtitle {
  color: var(--lp-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lp-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media(max-width: 600px) {
  .lp-cta-title {
    font-size: 2rem;
  }

  .lp-cta-card {
    padding: 3rem 1.5rem;
  }
}

/* ================================================================
   17. CONTACT FORM EXTRAS
   ================================================================ */
.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media(max-width: 600px) {
  .lp-form-row {
    grid-template-columns: 1fr;
  }
}

.lp-form-success {
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

.lp-hours-card {
  background: rgba(22, 28, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.lp-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--lp-text-muted);
}

.lp-hours-row:last-child {
  border-bottom: none;
}

/* ================================================================
   18. FOOTER EXTRA COLUMN
   ================================================================ */
.lp-footer-grid {
  grid-template-columns: 1.75fr 1fr 1fr 1fr !important;
}

@media(max-width: 991px) {
  .lp-footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media(max-width: 600px) {
  .lp-footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ================================================================
   19. HAMBURGER MENU
   ================================================================ */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.lp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.lp-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.lp-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.lp-mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(11, 15, 25, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.75rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.lp-mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.lp-mobile-cta {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.95rem 1.5rem !important;
  font-size: 1rem !important;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 18px -2px rgba(139, 92, 246, 0.4);
}

.lp-mobile-link {
  color: var(--lp-text-muted) !important;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.lp-mobile-link:last-child {
  border-bottom: none;
}

.lp-mobile-link:hover,
.lp-mobile-link.is-active {
  color: #fff !important;
  padding-left: 0.4rem;
}

@media(max-width: 768px) {
  .lp-nav {
    display: none;
  }

  .lp-hamburger {
    display: flex;
  }

  .lp-header-wrap {
    gap: 0.75rem;
  }

  .lp-header-wrap>a.lp-logo-link>img {
    height: 38px !important;
    max-height: 38px;
  }

  .lp-hero-title {
    font-size: 2.25rem;
  }
}

/* Hide desktop "Get Started" CTA on phones — the same CTA already lives in the mobile drawer */
@media(max-width: 768px) {
  .lp-header-actions .lp-btn-gradient {
    display: none;
  }
}

/* On very small screens, make sure nothing overflows */
@media(max-width: 480px) {
  .lp-container {
    padding: 0 1rem;
  }

  .lp-header-wrap {
    gap: 0.5rem;
  }

  .lp-hamburger {
    padding: 6px;
  }

  .lp-hamburger span {
    width: 20px;
  }
}

/* ================================================================
   20. ACTIVE NAV LINK
   ================================================================ */
.lp-nav-link.is-active {
  color: #ffffff !important;
}

.lp-nav-link.is-active::after {
  transform: scaleX(1) !important;
}

/* ================================================================
   21. PAGE LOADER
   ================================================================ */
#infrasyne-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 15, 25, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

#infrasyne-loader.isl-done {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.isl-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.18) 0%, transparent 60%);
  animation: isl-backdrop-shift 4s ease-in-out infinite alternate;
}

@keyframes isl-backdrop-shift {
  from {
    opacity: 0.7;
  }

  to {
    opacity: 1;
  }
}

.isl-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Concentric spinning rings */
.isl-ring-outer {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.isl-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: #8B5CF6;
  border-right-color: rgba(139, 92, 246, 0.3);
  -webkit-animation: isl-spin 1.1s linear infinite;
  animation: isl-spin 1.1s linear infinite;
}

.isl-ring-pulse {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #06B6D4;
  border-left-color: rgba(6, 182, 212, 0.3);
  -webkit-animation: isl-spin-rev 0.85s linear infinite;
  animation: isl-spin-rev 0.85s linear infinite;
}

@-webkit-keyframes isl-spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes isl-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes isl-spin-rev {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}

@keyframes isl-spin-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.isl-logo-wrap {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: isl-logo-pulse 2s ease-in-out infinite;
  animation: isl-logo-pulse 2s ease-in-out infinite;
}

.isl-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.6));
}

@-webkit-keyframes isl-logo-pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
  }

  50% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.7));
  }
}

@keyframes isl-logo-pulse {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
  }

  50% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.7));
  }
}

.isl-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.15rem;
}

.isl-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.6);
  margin-bottom: 2rem;
}

.isl-progress-track {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.isl-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8B5CF6, #06B6D4);
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.isl-loading-text {
  font-size: 0.72rem;
  color: rgba(156, 163, 175, 0.5);
  letter-spacing: 0.08em;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

/* ================================================================
   22. PAGE TRANSITION OVERLAY (exit animation)
   ================================================================ */
#infrasyne-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: #0b0f19;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#infrasyne-transition-overlay.isl-overlay-active {
  opacity: 1;
  pointer-events: all;
}

/* ================================================================
   23. STATS SECTION ENHANCEMENTS
   ================================================================ */
.lp-stat-icon {
  width: 52px;
  height: 52px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  color: #8B5CF6;
  transition: all 0.3s ease;
}

.lp-stat-box:hover .lp-stat-icon {
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.25);
  transform: scale(1.08);
}

/* ================================================================
   24. PROCESS/TIMELINE SECTION
   ================================================================ */
.lp-process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 3rem;
}

.lp-process-timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background: linear-gradient(180deg, #8B5CF6 0%, #06B6D4 100%);
  opacity: 0.35;
}

.lp-process-step {
  position: relative;
  background: rgba(22, 28, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  transition: all 0.35s ease;
}

.lp-process-step:hover {
  border-color: rgba(139, 92, 246, 0.25);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.08);
}

.lp-process-dot {
  position: absolute;
  left: -2.15rem;
  top: 1.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #06B6D4);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), 0 0 12px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

.lp-process-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8B5CF6;
  margin-bottom: 0.4rem;
  display: block;
}

.lp-process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.4rem;
}

.lp-process-step p {
  font-size: 0.88rem;
  color: var(--lp-text-muted);
  line-height: 1.55;
  margin: 0 !important;
}

/* ================================================================
   25. WHY CHOOSE US GRID (feature items)
   ================================================================ */
.lp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media(max-width: 600px) {
  .lp-why-grid {
    grid-template-columns: 1fr;
  }
}

.lp-why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(22, 28, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.lp-why-item:hover {
  border-color: rgba(6, 182, 212, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.06);
}

.lp-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #06B6D4;
}

.lp-why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.3rem;
}

.lp-why-text {
  font-size: 0.82rem;
  color: var(--lp-text-muted);
  line-height: 1.5;
  margin: 0 !important;
}

/* ================================================================
   26. CATEGORY FILTER BUTTONS ACTIVE STATE
   ================================================================ */
.product-filter-btn.active-filter {
  background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

/* ================================================================
   27. SERVICE HERO RIBBON / PILL ROW
   ================================================================ */
.lp-service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.lp-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22, 28, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-text-muted);
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.lp-service-pill:hover {
  border-color: rgba(139, 92, 246, 0.3);
  color: #fff;
  background: rgba(139, 92, 246, 0.08);
}

.lp-service-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #06B6D4);
  flex-shrink: 0;
}

/* ================================================================
   28. CONTACT PAGE WHATSAPP BUTTON
   ================================================================ */
.lp-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.lp-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

/* ================================================================
   29. ABOUT PAGE — MILESTONES / TIMELINE BADGES
   ================================================================ */
.lp-milestone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media(max-width: 768px) {
  .lp-milestone-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .lp-milestone-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.lp-milestone-box {
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(22, 28, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: all 0.35s ease;
}

.lp-milestone-box:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.1);
}

.lp-milestone-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-milestone-label {
  font-size: 0.82rem;
  color: var(--lp-text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ================================================================
   30. UI DESIGNER REFINEMENTS FOR SUBPAGES (ABOUT, SERVICES, PRODUCTS, CONTACT)
   ================================================================ */

/* Premium Glassmorphic Cards */
.modern-landing-page .lp-card {
  background: linear-gradient(135deg, rgba(22, 28, 42, 0.45) 0%, rgba(11, 15, 25, 0.65) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.modern-landing-page .lp-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.08), 0 0 15px rgba(6, 182, 212, 0.03);
}

/* Scoped Icons inside cards */
.modern-landing-page .lp-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 1.5rem;
}

.modern-landing-page .lp-card-icon.lp-icon-cyan {
  background: rgba(6, 182, 212, 0.08) !important;
  border: 1px solid rgba(6, 182, 212, 0.2) !important;
  color: #06B6D4 !important;
}

.modern-landing-page .lp-card-icon.lp-icon-purple {
  background: rgba(139, 92, 246, 0.08) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  color: #8B5CF6 !important;
}

.modern-landing-page .lp-card:hover .lp-card-icon.lp-icon-cyan {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.15) !important;
  color: #22d3ee !important;
}

.modern-landing-page .lp-card:hover .lp-card-icon.lp-icon-purple {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.15) !important;
  color: #a78bfa !important;
}

/* Milestone Boxes Custom Highlight */
.modern-landing-page .lp-milestone-box {
  background: linear-gradient(135deg, rgba(22, 28, 42, 0.5) 0%, rgba(11, 15, 25, 0.7) 100%) !important;
  border-left: 3px solid #8B5CF6 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-landing-page .lp-milestone-box:nth-child(even) {
  border-left-color: #06B6D4 !important;
}

.modern-landing-page .lp-milestone-box:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.08);
}

/* Process Timeline refinement */
.modern-landing-page .lp-process-step {
  border-left: 2px dashed rgba(255, 255, 255, 0.1) !important;
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.modern-landing-page .lp-process-step::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #06B6D4;
  box-shadow: 0 0 8px #06B6D4;
  transition: all 0.3s ease;
  z-index: 2;
}

.modern-landing-page .lp-process-step:hover::before {
  background: #8B5CF6;
  box-shadow: 0 0 12px #8B5CF6;
  transform: scale(1.4);
}

.modern-landing-page .lp-process-step:last-child {
  border-left-color: transparent !important;
}

/* CTA Banner Neon Accents */
.modern-landing-page .lp-cta-card {
  background: linear-gradient(135deg, rgba(22, 28, 42, 0.8) 0%, rgba(11, 15, 25, 0.8) 100%) !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.06), inset 0 0 20px rgba(139, 92, 246, 0.04) !important;
}

/* Form refinement */
.modern-landing-page input.lp-input,
.modern-landing-page textarea.lp-textarea,
.modern-landing-page select.lp-input {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(22, 28, 42, 0.45) !important;
}

.modern-landing-page input.lp-input:focus,
.modern-landing-page textarea.lp-textarea:focus,
.modern-landing-page select.lp-input:focus {
  border-color: #06B6D4 !important;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15) !important;
  background-color: rgba(22, 28, 42, 0.75) !important;
}

/* ────────────────────────────────────────────────────────────────
   ALTERNATING SERVICES LAYOUT (page-services.php)
   ──────────────────────────────────────────────────────────────── */
.lp-services-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.lp-service-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(6, 182, 212, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.lp-service-row:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.15), 0 0 30px -5px rgba(6, 182, 212, 0.06);
  transform: translateY(-4px);
}

.lp-service-row:hover::before {
  opacity: 1;
}

.lp-service-col {
  flex: 1;
  position: relative;
  z-index: 1;
}

.lp-service-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-service-row-title {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.lp-service-row-text {
  color: var(--lp-text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.lp-service-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-service-row:hover .lp-service-img-wrap {
  transform: scale(1.02);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.lp-service-row-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Alternate order for even rows */
.lp-service-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Mobile responsive layout */
@media (max-width: 991px) {
  .lp-services-list {
    gap: 3.5rem;
  }

  .lp-service-row {
    flex-direction: column !important;
    padding: 2.25rem;
    gap: 2.5rem;
  }

  .lp-service-img-wrap {
    order: -1; /* Image always on top in mobile */
    width: 100%;
  }

  .lp-service-row-img {
    height: 250px;
  }
}