/* ============================================================
   SafetyPro Landing Page — Premium Design System v2
   Complete Safety Operations System
   ============================================================ */

/* ---------- Skip Navigation (Accessibility) ---------- */
.lp-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--lp-orange);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.lp-skip-link:focus {
  top: 0;
}

/* ---------- CSS Variables ---------- */
:root {
  --lp-navy: #1B2A4A;
  --lp-navy-dark: #0F1A2E;
  --lp-navy-deep: #0a1628;
  --lp-orange: #F7941D;
  --lp-orange-hover: #E8850A;
  --lp-orange-light: #FFF3E0;
  --lp-orange-glow: rgba(247, 148, 29, 0.35);
  --lp-white: #FFFFFF;
  --lp-gray-50: #F8FAFC;
  --lp-gray-100: #F1F5F9;
  --lp-gray-200: #E2E8F0;
  --lp-gray-300: #CBD5E1;
  --lp-gray-400: #94A3B8;
  --lp-gray-500: #64748B;
  --lp-gray-600: #475569;
  --lp-gray-700: #334155;
  --lp-gray-800: #1E293B;
  --lp-glass-bg: rgba(255, 255, 255, 0.06);
  --lp-glass-border: rgba(255, 255, 255, 0.12);
  --lp-glass-bg-light: rgba(255, 255, 255, 0.75);
  --lp-glass-border-light: rgba(255, 255, 255, 0.5);
  --lp-radius: 12px;
  --lp-radius-lg: 20px;
  --lp-radius-xl: 28px;
  --lp-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --lp-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --lp-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --lp-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --lp-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--lp-gray-800);
  background: var(--lp-white);
  line-height: 1.6;
  overflow-x: hidden;
}

[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Inter', -apple-system, sans-serif;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.938rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--lp-transition);
  white-space: nowrap;
  font-family: inherit;
}
.lp-btn-primary {
  background: var(--lp-orange);
  color: var(--lp-white);
  border-color: var(--lp-orange);
}
.lp-btn-primary:hover {
  background: var(--lp-orange-hover);
  border-color: var(--lp-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--lp-orange-glow);
}
.lp-btn-outline {
  background: transparent;
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.4);
}
.lp-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--lp-white);
}
.lp-btn-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--lp-white);
  border-color: rgba(255,255,255,0.25);
}
.lp-btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.lp-btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--lp-transition);
}
.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.lp-nav--scrolled {
  background: rgba(15, 26, 46, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 24px;
}
.lp-nav--scrolled .lp-nav-inner { height: 64px; }

.lp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lp-nav-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-white);
  letter-spacing: -0.5px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav-link {
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--lp-transition);
}
.lp-nav-link:hover {
  color: var(--lp-white);
  background: rgba(255,255,255,0.08);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language Switcher */
.lp-lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.lp-lang-btn {
  padding: 6px 12px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--lp-transition);
  font-family: inherit;
}
.lp-lang-btn:hover { color: var(--lp-white); }
.lp-lang-btn.active {
  background: var(--lp-orange);
  color: var(--lp-white);
}

/* Mobile Menu Toggle */
.lp-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.lp-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lp-white);
  border-radius: 2px;
  transition: all var(--lp-transition);
}
.lp-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lp-menu-toggle.active span:nth-child(2) { opacity: 0; }
.lp-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-dark) 40%, var(--lp-navy-deep) 100%);
}

/* Hero Background */
.lp-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Animated Orbs */
.lp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.lp-hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(247,148,29,0.3) 0%, transparent 70%);
  animation: lp-orb-drift 12s ease-in-out infinite;
}
.lp-hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(27,42,74,0.6) 0%, transparent 70%);
  animation: lp-orb-drift 15s ease-in-out infinite 3s;
}
.lp-hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
  animation: lp-orb-drift 10s ease-in-out infinite 6s;
}

/* Subtle Grid */
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Hero Glow */
.lp-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(247,148,29,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero Content */
.lp-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.3);
  border-radius: 50px;
  color: var(--lp-orange);
  font-size: 0.813rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.lp-hero-badge svg {
  flex-shrink: 0;
}
.lp-hero-badge-pulse {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--lp-orange);
  border-radius: 50%;
  animation: lp-pulse-dot 2s ease-in-out infinite;
}

.lp-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--lp-white);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.lp-text-gradient {
  background: linear-gradient(135deg, var(--lp-orange) 0%, #FFB347 50%, var(--lp-orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: lp-gradient-shift 4s ease infinite;
}

.lp-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.lp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Floating Metric Cards */
.lp-hero-metrics {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  margin-top: 80px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}
.lp-metric-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--lp-radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
  transition: all var(--lp-transition);
}
.lp-metric-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(247,148,29,0.3);
  transform: translateY(-4px);
}
.lp-metric-icon {
  width: 48px;
  height: 48px;
  background: rgba(247,148,29,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lp-orange);
}
.lp-metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-orange);
  letter-spacing: -1px;
  line-height: 1.1;
}
.lp-metric-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.lp-trust-bar {
  background: var(--lp-gray-50);
  border-top: 1px solid var(--lp-gray-200);
  border-bottom: 1px solid var(--lp-gray-200);
  padding: 20px 0;
}
.lp-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-trust-label {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--lp-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.lp-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-trust-badge {
  padding: 6px 16px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-navy);
  letter-spacing: 0.3px;
}

/* ============================================================
   INDUSTRIES BAR
   ============================================================ */
.lp-industries {
  background: var(--lp-white);
  padding: 40px 0;
}
.lp-industries-inner {
  text-align: center;
}
.lp-industries-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lp-gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.lp-industries-list {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-industry-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-gray-200);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-navy);
  transition: all var(--lp-transition);
}
.lp-industry-item svg {
  color: var(--lp-orange);
  flex-shrink: 0;
}
.lp-industry-item:hover {
  border-color: var(--lp-orange);
  background: var(--lp-orange-light);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
.lp-section {
  padding: 100px 0;
  position: relative;
}
.lp-section-light { background: var(--lp-white); }
.lp-section-gray { background: var(--lp-gray-50); }
.lp-section-dark {
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-dark) 100%);
  color: var(--lp-white);
}
.lp-section-accent {
  background: linear-gradient(135deg, var(--lp-navy-deep) 0%, var(--lp-navy) 50%, var(--lp-navy-dark) 100%);
  color: var(--lp-white);
}
.lp-section-culture {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--lp-white);
}

.lp-section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.lp-section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--lp-orange-light);
  color: var(--lp-orange);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.lp-section-tag-dark {
  background: rgba(247,148,29,0.15);
}
.lp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.lp-section-subtitle {
  font-size: 1.063rem;
  color: var(--lp-gray-500);
  line-height: 1.7;
}
.lp-section-dark .lp-section-subtitle,
.lp-section-accent .lp-section-subtitle,
.lp-section-culture .lp-section-subtitle { color: rgba(255,255,255,0.6); }

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.lp-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-overview-card {
  padding: 36px 28px;
  text-align: center;
  transition: all var(--lp-transition);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-white);
  position: relative;
}
.lp-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-orange);
}
.lp-ov-icon {
  width: 64px;
  height: 64px;
  background: var(--lp-orange-light);
  border-radius: var(--lp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.lp-overview-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--lp-navy);
}
.lp-overview-card p {
  font-size: 0.875rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-ov-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lp-orange-light);
  color: var(--lp-orange);
  border-radius: 50px;
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   FEATURES SECTION (Core Operations — dark)
   ============================================================ */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-feature-card {
  padding: 28px 24px;
  border-radius: var(--lp-radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: all var(--lp-transition);
  cursor: default;
}
.lp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(247,148,29,0.4);
  background: rgba(255,255,255,0.08);
}
.lp-feature-card:hover .lp-feature-icon {
  background: var(--lp-orange);
  color: var(--lp-white);
}
.lp-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(247,148,29,0.12);
  color: var(--lp-orange);
  border-radius: var(--lp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--lp-transition);
}
.lp-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 8px;
}
.lp-feature-card p {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   SAFETY & ENVIRONMENT SECTION
   ============================================================ */
.lp-senv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-senv-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  transition: all var(--lp-transition);
  align-items: flex-start;
}
.lp-senv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: transparent;
}
.lp-senv-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--lp-transition);
}
.lp-senv-icon-red { background: #FEE2E2; color: #DC2626; }
.lp-senv-card:hover .lp-senv-icon-red { background: #DC2626; color: white; }
.lp-senv-icon-green { background: #D1FAE5; color: #059669; }
.lp-senv-card:hover .lp-senv-icon-green { background: #059669; color: white; }
.lp-senv-icon-purple { background: #EDE9FE; color: #7C3AED; }
.lp-senv-card:hover .lp-senv-icon-purple { background: #7C3AED; color: white; }
.lp-senv-icon-blue { background: #DBEAFE; color: #2563EB; }
.lp-senv-card:hover .lp-senv-icon-blue { background: #2563EB; color: white; }
.lp-senv-icon-orange { background: var(--lp-orange-light); color: var(--lp-orange); }
.lp-senv-card:hover .lp-senv-icon-orange { background: var(--lp-orange); color: white; }
.lp-senv-icon-teal { background: #CCFBF1; color: #0D9488; }
.lp-senv-card:hover .lp-senv-icon-teal { background: #0D9488; color: white; }

.lp-senv-content h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 8px;
}
.lp-senv-content p {
  font-size: 0.85rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.lp-senv-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-senv-tags span {
  padding: 3px 10px;
  background: var(--lp-gray-50);
  border: 1px solid var(--lp-gray-200);
  border-radius: 50px;
  font-size: 0.688rem;
  font-weight: 600;
  color: var(--lp-gray-600);
}

/* ============================================================
   QUALITY & COMPLIANCE SECTION
   ============================================================ */
.lp-qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-qc-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--lp-radius-lg);
  transition: all var(--lp-transition);
  position: relative;
  overflow: hidden;
}
.lp-qc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-orange), #FFB347);
  opacity: 0;
  transition: opacity var(--lp-transition);
}
.lp-qc-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(247,148,29,0.3);
}
.lp-qc-card:hover::before { opacity: 1; }
.lp-qc-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(247,148,29,0.2);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.lp-qc-body h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 8px;
}
.lp-qc-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   AI ENGINE SECTION
   ============================================================ */
.lp-ai-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* AI Copilot Hero Card */
.lp-ai-hero {
  padding: 36px;
  background: linear-gradient(135deg, var(--lp-navy) 0%, var(--lp-navy-dark) 100%);
  border-radius: var(--lp-radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.lp-ai-hero-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.lp-ai-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(247,148,29,0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: lp-pulse-glow 3s ease-in-out infinite;
}
.lp-ai-hero h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-white);
  margin-bottom: 12px;
}
.lp-ai-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lp-ai-hero-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.lp-ai-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-ai-bar-dot-warn { background: #F59E0B; box-shadow: 0 0 8px rgba(245,158,11,0.5); }
.lp-ai-bar-dot-info { background: #3B82F6; box-shadow: 0 0 8px rgba(59,130,246,0.5); }
.lp-ai-bar-dot-ok { background: #10B981; box-shadow: 0 0 8px rgba(16,185,129,0.5); }

/* AI Capabilities Grid */
.lp-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lp-ai-card {
  padding: 24px 20px;
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius);
  background: var(--lp-white);
  transition: all var(--lp-transition);
  position: relative;
  overflow: hidden;
}
.lp-ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-orange), #FFB347);
  opacity: 0;
  transition: opacity var(--lp-transition);
}
.lp-ai-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-orange);
}
.lp-ai-card:hover::before { opacity: 1; }
.lp-ai-num {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(247,148,29,0.15) 0%, rgba(247,148,29,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-ai-card h3 {
  font-size: 0.938rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 6px;
}
.lp-ai-card p {
  font-size: 0.813rem;
  color: var(--lp-gray-500);
  line-height: 1.5;
}

/* ============================================================
   SAFETY CULTURE ENGINE SECTION
   ============================================================ */
.lp-culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-culture-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-culture-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lp-culture-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(247,148,29,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-orange);
}
.lp-culture-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 4px;
}
.lp-culture-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Culture Visual — Card Stack */
.lp-culture-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-culture-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}
.lp-culture-card-badge,
.lp-culture-card-score,
.lp-culture-card-points {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--lp-radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--lp-transition);
}
.lp-culture-card-badge:hover,
.lp-culture-card-score:hover,
.lp-culture-card-points:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(247,148,29,0.3);
  transform: translateY(-4px);
}

.lp-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.lp-badge-gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}
.lp-culture-card-badge span {
  display: block;
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--lp-white);
}
.lp-culture-card-badge small,
.lp-culture-card-score small,
.lp-culture-card-points small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Score Ring */
.lp-culture-card-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-score-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}
.lp-score-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--lp-orange);
}
.lp-culture-card-score span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-white);
}

/* Points Card */
.lp-points-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lp-orange);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.lp-culture-card-points span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 12px;
}
.lp-points-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.lp-points-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lp-orange), #FFB347);
  border-radius: 3px;
}

/* ============================================================
   IoT SECTION
   ============================================================ */
.lp-iot-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-iot-content .lp-section-title {
  text-align: start;
}
.lp-iot-desc {
  font-size: 0.938rem;
  color: var(--lp-gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lp-iot-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-iot-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-gray-700);
}
.lp-iot-feat svg { flex-shrink: 0; }

/* IoT Dashboard Visual */
.lp-iot-dashboard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: var(--lp-navy-deep);
  border-radius: var(--lp-radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-iot-sensor {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all var(--lp-transition);
}
.lp-iot-sensor:hover {
  background: rgba(255,255,255,0.08);
}
.lp-iot-sensor-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-iot-ok { background: rgba(16,185,129,0.15); color: #10B981; }
.lp-iot-warn { background: rgba(245,158,11,0.15); color: #F59E0B; }
.lp-iot-crit { background: rgba(239,68,68,0.15); color: #EF4444; }
.lp-iot-sensor-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.lp-iot-sensor-val {
  font-size: 1.125rem;
  font-weight: 700;
}
.lp-iot-ok-text { color: #10B981; }
.lp-iot-warn-text { color: #F59E0B; }
.lp-iot-crit-text { color: #EF4444; }
.lp-iot-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.lp-iot-badge-ok { background: rgba(16,185,129,0.15); color: #10B981; }
.lp-iot-badge-warn { background: rgba(245,158,11,0.15); color: #F59E0B; }
.lp-iot-badge-crit { background: rgba(239,68,68,0.15); color: #EF4444; animation: lp-pulse-dot 1.5s ease infinite; }

/* ============================================================
   COLLABORATION SECTION
   ============================================================ */
.lp-collab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-collab-card {
  padding: 32px 24px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  text-align: center;
  transition: all var(--lp-transition);
}
.lp-collab-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lp-shadow-lg);
  border-color: var(--lp-orange);
}
.lp-collab-icon {
  width: 56px;
  height: 56px;
  background: var(--lp-orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--lp-transition);
}
.lp-collab-card:hover .lp-collab-icon {
  background: var(--lp-orange);
}
.lp-collab-card:hover .lp-collab-icon svg {
  stroke: white;
}
.lp-collab-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 8px;
}
.lp-collab-card p {
  font-size: 0.85rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
}

/* ============================================================
   BUSINESS VALUE / WHY SECTION
   ============================================================ */
.lp-value-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-value-content .lp-section-title {
  text-align: start;
}
.lp-value-content .lp-section-tag {
  display: inline-block;
}
.lp-value-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.lp-value-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.lp-value-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(247,148,29,0.12);
  border-radius: var(--lp-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lp-value-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 4px;
}
.lp-value-point p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Value Stats Grid */
.lp-value-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-value-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}
.lp-vstat {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--lp-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--lp-transition);
}
.lp-vstat:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(247,148,29,0.3);
  transform: translateY(-4px);
}
.lp-vstat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lp-orange);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.lp-vstat-label {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECURITY SECTION
   ============================================================ */
.lp-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-security-card {
  padding: 32px 28px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-lg);
  transition: all var(--lp-transition);
}
.lp-security-card:hover {
  border-color: var(--lp-orange);
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}
.lp-security-card svg {
  margin-bottom: 16px;
}
.lp-security-card h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 8px;
}
.lp-security-card p {
  font-size: 0.875rem;
  color: var(--lp-gray-500);
  line-height: 1.6;
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.lp-process-timeline {
  display: flex;
  position: relative;
  gap: 0;
}
.lp-process-line {
  position: absolute;
  top: 32px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: var(--lp-gray-200);
}
.lp-process-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--lp-orange);
  transition: width 1.5s ease 0.5s;
}
.lp-process-timeline.lp-timeline-active .lp-process-line::after {
  width: 100%;
}
.lp-process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.lp-process-number {
  width: 64px;
  height: 64px;
  background: var(--lp-white);
  border: 3px solid var(--lp-gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-gray-400);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: all var(--lp-transition-slow);
}
.lp-process-step.lp-visible .lp-process-number {
  border-color: var(--lp-orange);
  color: var(--lp-orange);
  box-shadow: 0 0 0 8px rgba(247,148,29,0.1);
}
.lp-process-step h3 {
  font-size: 1.063rem;
  font-weight: 700;
  color: var(--lp-navy);
  margin-bottom: 8px;
}
.lp-process-step p {
  font-size: 0.875rem;
  color: var(--lp-gray-500);
  line-height: 1.5;
}

/* ============================================================
   CONTACT / REQUEST ACCESS — Split Layout
   ============================================================ */
.lp-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lp-contact-info .lp-section-title {
  text-align: start;
}
.lp-contact-desc {
  font-size: 0.938rem;
  color: var(--lp-gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lp-contact-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-cf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--lp-gray-700);
}
.lp-cf svg {
  flex-shrink: 0;
}

.lp-contact-form {
  padding: 40px;
  background: var(--lp-white);
  border: 1px solid var(--lp-gray-200);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow);
}
.lp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.lp-form-full { margin-bottom: 28px; }
.lp-form-group { display: flex; flex-direction: column; gap: 6px; }
.lp-form-group label {
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--lp-gray-700);
}
.lp-form-group input, .lp-form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--lp-gray-200);
  border-radius: var(--lp-radius);
  font-size: 0.938rem;
  font-family: inherit;
  color: var(--lp-gray-800);
  transition: all var(--lp-transition);
  background: var(--lp-gray-50);
  outline: none;
}
.lp-form-group input:focus, .lp-form-group textarea:focus {
  border-color: var(--lp-orange);
  box-shadow: 0 0 0 3px rgba(247,148,29,0.15);
  background: var(--lp-white);
}
.lp-form-group textarea { resize: vertical; min-height: 100px; }
.lp-btn-submit {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
  background: var(--lp-navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-footer-brand {
  display: flex;
  flex-direction: column;
}
.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.lp-footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-white);
}
.lp-footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 320px;
}
.lp-footer-links h4 {
  color: var(--lp-white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lp-footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: color var(--lp-transition);
}
.lp-footer-links a:hover { color: var(--lp-orange); }
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.813rem;
  color: rgba(255,255,255,0.4);
}
.lp-footer-dev {
  color: rgba(255,255,255,0.5);
}
.lp-footer-dev strong {
  color: var(--lp-orange);
  font-weight: 700;
}

/* ============================================================
   TOAST
   ============================================================ */
.lp-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
[dir="rtl"] .lp-toast-container { right: auto; left: 24px; }
.lp-toast {
  padding: 16px 24px;
  background: var(--lp-navy);
  color: var(--lp-white);
  border-radius: var(--lp-radius);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--lp-shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: lp-fadeInUp 0.4s ease;
  border-left: 4px solid var(--lp-orange);
}
[dir="rtl"] .lp-toast { border-left: none; border-right: 4px solid var(--lp-orange); }
.lp-toast-success { border-color: #27AE60; }
.lp-toast svg { color: #27AE60; flex-shrink: 0; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.lp-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--lp-orange);
  color: var(--lp-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--lp-transition);
  box-shadow: 0 4px 15px var(--lp-orange-glow);
  z-index: 999;
}
[dir="rtl"] .lp-back-to-top { right: auto; left: 32px; }
.lp-back-to-top.lp-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lp-back-to-top:hover {
  background: var(--lp-orange-hover);
  transform: translateY(-4px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes lp-orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes lp-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes lp-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lp-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--lp-orange-glow); }
  50% { box-shadow: 0 0 40px var(--lp-orange-glow), 0 0 60px rgba(247,148,29,0.1); }
}
@keyframes lp-pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(1.5); }
}

/* Scroll-triggered animations */
.lp-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp-animate.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations (on load) */
.lp-animate-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: lp-fadeInUp 0.8s ease forwards;
}
.lp-animate-hero[data-delay="1"] { animation-delay: 0.15s; }
.lp-animate-hero[data-delay="2"] { animation-delay: 0.3s; }
.lp-animate-hero[data-delay="3"] { animation-delay: 0.45s; }
.lp-animate-hero[data-delay="4"] { animation-delay: 0.6s; }

/* Stagger children */
.lp-stagger > .lp-animate:nth-child(1) { transition-delay: 0.05s; }
.lp-stagger > .lp-animate:nth-child(2) { transition-delay: 0.1s; }
.lp-stagger > .lp-animate:nth-child(3) { transition-delay: 0.15s; }
.lp-stagger > .lp-animate:nth-child(4) { transition-delay: 0.2s; }
.lp-stagger > .lp-animate:nth-child(5) { transition-delay: 0.25s; }
.lp-stagger > .lp-animate:nth-child(6) { transition-delay: 0.3s; }
.lp-stagger > .lp-animate:nth-child(7) { transition-delay: 0.35s; }
.lp-stagger > .lp-animate:nth-child(8) { transition-delay: 0.4s; }
.lp-stagger > .lp-animate:nth-child(9) { transition-delay: 0.45s; }
.lp-stagger > .lp-animate:nth-child(10) { transition-delay: 0.5s; }
.lp-stagger > .lp-animate:nth-child(11) { transition-delay: 0.55s; }
.lp-stagger > .lp-animate:nth-child(12) { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .lp-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-ai-showcase { grid-template-columns: 1fr; gap: 32px; }
  .lp-ai-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-senv-grid { grid-template-columns: 1fr; }
  .lp-qc-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-security-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-collab-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-value-layout { grid-template-columns: 1fr; gap: 48px; }
  .lp-value-content .lp-section-title { text-align: center; }
  .lp-value-content .lp-section-tag { text-align: center; display: block; }
  .lp-value-stats { max-width: 360px; margin: 0 auto; }
  .lp-contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-contact-info .lp-section-title { text-align: center; }
  .lp-contact-desc { text-align: center; }
  .lp-contact-features { align-items: center; }
  .lp-culture-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-culture-card-stack { max-width: 100%; flex-direction: row; }
  .lp-culture-card-badge,
  .lp-culture-card-score,
  .lp-culture-card-points { flex: 1; }
  .lp-iot-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-iot-content .lp-section-title { text-align: center; }
  .lp-iot-desc { text-align: center; }
  .lp-iot-features { align-items: center; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .lp-nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,26,46,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--lp-transition);
    z-index: 999;
  }
  .lp-nav-links.lp-nav-links--open {
    opacity: 1;
    visibility: visible;
  }
  .lp-nav-link { font-size: 1.25rem; padding: 12px 24px; }
  .lp-nav-actions .lp-btn { display: none; }
  .lp-menu-toggle { display: flex; }

  /* Hero */
  .lp-hero { padding: 100px 16px 40px; min-height: auto; }
  .lp-hero-metrics {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 12px;
  }
  .lp-metric-card {
    width: 100%;
    max-width: 300px;
    padding: 16px 20px;
  }
  .lp-metric-number { font-size: 1.75rem; }
  .lp-metric-label { font-size: 0.688rem; }

  /* Trust Bar */
  .lp-trust-inner { flex-direction: column; gap: 12px; }
  .lp-trust-badges { justify-content: center; }

  /* Sections */
  .lp-section { padding: 64px 0; }
  .lp-section-header { margin-bottom: 40px; }
  .lp-overview-grid { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-ai-grid { grid-template-columns: 1fr; }
  .lp-senv-grid { grid-template-columns: 1fr; }
  .lp-qc-grid { grid-template-columns: 1fr; }
  .lp-security-grid { grid-template-columns: 1fr; }
  .lp-collab-grid { grid-template-columns: 1fr; }

  /* Culture */
  .lp-culture-layout { grid-template-columns: 1fr; gap: 32px; }
  .lp-culture-card-stack { flex-direction: column; max-width: 300px; margin: 0 auto; }

  /* IoT */
  .lp-iot-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Value */
  .lp-value-layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-value-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }

  /* Process */
  .lp-process-timeline { flex-direction: column; gap: 24px; }
  .lp-process-line {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .lp-process-line::after {
    width: 100% !important;
    height: 0;
    transition: height 1.5s ease 0.5s;
  }
  .lp-process-timeline.lp-timeline-active .lp-process-line::after {
    height: 100%;
    width: 100%;
  }
  .lp-process-step {
    text-align: start;
    padding-left: 80px;
    padding-right: 0;
  }
  .lp-process-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    position: absolute;
    left: 8px;
    margin: 0;
  }

  /* Contact */
  .lp-contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .lp-contact-form { padding: 28px 20px; }
  .lp-form-grid { grid-template-columns: 1fr; }

  /* Safety-Env cards */
  .lp-senv-card { flex-direction: column; }

  /* Footer */
  .lp-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Back to top */
  .lp-back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .lp-hero-title { font-size: 2rem; }
  .lp-hero-ctas { flex-direction: column; align-items: center; }
  .lp-hero-ctas .lp-btn { width: 100%; justify-content: center; }
  .lp-vstat { padding: 24px 16px; }
  .lp-vstat-number { font-size: 2rem; }
}

/* ============================================================
   RTL OVERRIDES
   ============================================================ */
[dir="rtl"] .lp-nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .lp-nav-links { flex-direction: row-reverse; }
[dir="rtl"] .lp-nav-actions { flex-direction: row-reverse; }
[dir="rtl"] .lp-hero-content { direction: rtl; }
[dir="rtl"] .lp-section-header { direction: rtl; }
[dir="rtl"] .lp-btn svg { transform: scaleX(-1); }
[dir="rtl"] .lp-value-point { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .lp-value-content .lp-section-title { text-align: end; }
[dir="rtl"] .lp-value-content .lp-section-tag { text-align: end; }
[dir="rtl"] .lp-contact-info .lp-section-title { text-align: end; }
[dir="rtl"] .lp-contact-desc { text-align: right; }
[dir="rtl"] .lp-cf { flex-direction: row-reverse; }
[dir="rtl"] .lp-form-group input,
[dir="rtl"] .lp-form-group textarea { text-align: right; }
[dir="rtl"] .lp-footer-bottom { flex-direction: row-reverse; }
[dir="rtl"] .lp-overview-card,
[dir="rtl"] .lp-feature-card,
[dir="rtl"] .lp-security-card,
[dir="rtl"] .lp-ai-card,
[dir="rtl"] .lp-collab-card { text-align: right; }
[dir="rtl"] .lp-process-step { text-align: end; }
[dir="rtl"] .lp-senv-card { flex-direction: row-reverse; }
[dir="rtl"] .lp-senv-content { text-align: right; }
[dir="rtl"] .lp-culture-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .lp-iot-content .lp-section-title { text-align: end; }
[dir="rtl"] .lp-iot-desc { text-align: right; }
[dir="rtl"] .lp-iot-feat { flex-direction: row-reverse; }
[dir="rtl"] .lp-iot-badge { margin-left: 0; margin-right: auto; }

@media (max-width: 768px) {
  [dir="rtl"] .lp-nav-inner { flex-direction: row-reverse; }
  [dir="rtl"] .lp-process-step {
    text-align: end;
    padding-left: 0;
    padding-right: 80px;
  }
  [dir="rtl"] .lp-process-number { left: auto; right: 8px; }
  [dir="rtl"] .lp-process-line { left: auto; right: 32px; }
  [dir="rtl"] .lp-metric-card { text-align: right; }
  [dir="rtl"] .lp-senv-card { flex-direction: column; }
}

