/* Premium Landing Page - Noir Inspired Design */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::selection {
  background: var(--landing-accent);
  color: white;
}

/* Custom Scrollbar */
.landing-page::-webkit-scrollbar {
  width: 10px;
}

.landing-page::-webkit-scrollbar-track {
  background: var(--landing-bg);
}

.landing-page::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light));
  border-radius: 10px;
  transition: all 0.3s ease;
}

.landing-page::-webkit-scrollbar-thumb:hover {
  background: var(--landing-accent);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

:root {
  --landing-bg: linear-gradient(135deg, #ffffff 0%, #fff5f0 50%, #ffe9dc 100%);
  --landing-text: #000000;
  --landing-text-secondary: #4a4a4a;
  --landing-border: #e5e5e5;
  --landing-accent: #FF5A00;
  --landing-accent-light: #ff7a33;
  --landing-card-bg: rgba(255, 255, 255, 0.95);
  --landing-shadow-sm: 0 2px 8px rgba(255, 90, 0, 0.08);
  --landing-shadow-md: 0 8px 32px rgba(255, 90, 0, 0.15);
  --landing-shadow-lg: 0 20px 60px rgba(255, 90, 0, 0.25);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
}

/* Landing page dark mode - separate from ERP theme */
[data-landing-theme="dark"] .landing-page {
  --landing-bg: linear-gradient(135deg, #0a0a0a 0%, #111827 50%, #0f1419 100%);
  --landing-text: #f1f5f9;
  --landing-text-secondary: #94a3b8;
  --landing-border: rgba(148, 163, 184, 0.1);
  --landing-card-bg: rgba(20, 20, 30, 0.95);
  --landing-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --landing-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
  --landing-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.landing-page {
  background: var(--landing-bg);
  background-attachment: fixed;
  color: var(--landing-text);
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1s ease, transform 1s ease;
}

.landing-page.loaded {
  opacity: 1;
  transform: scale(1);
}

.landing-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, var(--landing-accent), transparent 50%),
    radial-gradient(circle at 80% 80%, var(--landing-accent-light, var(--landing-accent)), transparent 50%);
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--landing-accent);
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--landing-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--landing-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}

.landing-page:hover .custom-cursor {
  opacity: 1;
}

a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* Loading State */
.landing-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--landing-bg);
  position: relative;
  overflow: hidden;
}

/* Premium Loader Animation */
.loader {
  position: relative;
  width: 200px;
  height: 60px;
}

.loader-inner {
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap {
  animation: spin 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader-line {
  border: 3px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap:nth-child(1) { animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { animation-delay: -250ms; }

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: var(--landing-accent);
  height: 90px;
  width: 90px;
  top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
  border-color: var(--landing-accent-light, var(--landing-accent));
  height: 76px;
  width: 76px;
  top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
  border-color: var(--landing-accent);
  height: 62px;
  width: 62px;
  top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
  border-color: var(--landing-accent-light, var(--landing-accent));
  height: 48px;
  width: 48px;
  top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
  border-color: var(--landing-accent);
  height: 34px;
  width: 34px;
  top: 35px;
}

@keyframes spin {
  0%, 15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Cursor Follower */
.cursor-follower {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)), transparent 60%);
  opacity: 0.06;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease, transform 0.3s ease;
  z-index: 0;
  filter: blur(60px);
}

.landing-page:hover .cursor-follower {
  opacity: 0.08;
}

/* Magnetic Button Effect */
.magnetic-btn {
  transition: transform 0.3s var(--ease-out-expo);
  will-change: transform;
}

/* Reveal Animation for Sections */
.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.landing-page.js-enabled .reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.landing-page.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--landing-card-bg);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow-sm);
  transition: all 0.3s var(--ease-out-expo);
  transform: translateY(-100%);
  animation: slideDown 0.8s var(--ease-out-expo) 0.3s forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.landing-nav:hover {
  box-shadow: var(--landing-shadow-md);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  position: relative;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  align-items: center;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s backwards;
}

.nav-logo::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, var(--landing-accent), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  filter: blur(20px);
}

.nav-logo:hover::before {
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.nav-logo:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(12, 83, 67, 0.3));
}

.logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease-out-expo);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover .logo-image {
  filter: drop-shadow(0 4px 16px rgba(12, 83, 67, 0.4)) 
          brightness(1.1);
}

/* Legacy logo text fallback */
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.6s var(--ease-out-expo) forwards;
}

.nav-menu li:nth-child(1) { animation-delay: 0.4s; }
.nav-menu li:nth-child(2) { animation-delay: 0.5s; }
.nav-menu li:nth-child(3) { animation-delay: 0.6s; }
.nav-menu li:nth-child(4) { animation-delay: 0.7s; }
.nav-menu li:nth-child(5) { animation-delay: 0.8s; }
.nav-menu li:nth-child(6) { animation-delay: 0.9s; }

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu a {
  color: var(--landing-text);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out-expo);
  border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--landing-accent);
}
.nav-menu a:hover::after {
  width: 100%;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--landing-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  color: var(--landing-text);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
}

.theme-toggle:hover::before {
  opacity: 0.1;
}

.theme-toggle:hover {
  border-color: var(--landing-accent);
  background: var(--landing-card-bg);
  transform: rotate(180deg) scale(1.1);
  box-shadow: var(--landing-shadow-md);
}

.theme-toggle svg {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav-cta {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  color: white;
  border: none;
  padding: 0.625rem 1.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(12, 83, 67, 0.2);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 83, 67, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--landing-text);
  transition: all 0.3s var(--ease-out-expo);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 6rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 20s ease-in-out infinite;
  opacity: 0.3;
  z-index: 2;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -250px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  33% { transform: translate(40px, -40px) scale(1.15); opacity: 0.5; }
  66% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.35; }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--landing-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--landing-border) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.2;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 30%, black);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #FF5A00, #ff7a33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s backwards;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
}

.hero-title {
  font-size: clamp(1.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8),
               0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

.hero-title .word {
  display: inline-block;
  animation: fadeInUp 0.8s var(--ease-out-expo) backwards;
  animation-fill-mode: backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
               0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s backwards;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  border: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  color: white;
  box-shadow: 0 8px 24px rgba(12, 83, 67, 0.25);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 90, 0, 0.35), 
              0 0 40px rgba(255, 90, 0, 0.2);
  filter: brightness(1.1);
}

.hero-supporting-text {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1.2s backwards;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
               0 4px 20px rgba(0, 0, 0, 0.5);
}

.cta-secondary {
  background: var(--landing-card-bg);
  border: 2px solid var(--landing-border);
  color: var(--landing-text);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--landing-accent);
  opacity: 0.1;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--landing-shadow-md);
  border-color: var(--landing-accent);
}

.cta-secondary:hover {
  border-color: var(--landing-accent);
  color: var(--landing-accent);
  transform: translateY(-4px);
  box-shadow: var(--landing-shadow-md);
}

.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1s backwards;
}

.hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.hero-stats .stat:nth-child(2) {
  animation-delay: 2s;
}

.hero-stats .stat:nth-child(3) {
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF5A00, #ff7a33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  animation: fadeIn 1s ease 1.2s backwards;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.8; }
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--landing-accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
}

/* Section Styles */
section {
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(12, 83, 67, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: var(--landing-text);
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* About Section */
.about-section {
  background: var(--landing-card-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--landing-text);
  font-weight: 500;
}

.about-text p {
  color: var(--landing-text-secondary);
  line-height: 1.8;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 1rem;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.link-button::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s var(--ease-out-expo);
}

.link-button:hover::after {
  width: 100%;
}

.link-button:hover {
  transform: translateX(8px);
}

.link-button svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.link-button:hover svg {
  transform: translateX(4px);
}

.about-image {
  position: relative;
}

.image-card {
  position: relative;
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--landing-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s var(--ease-out-expo);
}

.image-card:hover {
  transform: scale(1.02);
  box-shadow: var(--landing-shadow-lg);
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-placeholder {
  color: var(--landing-border);
  opacity: 0.3;
  transition: all 0.5s var(--ease-out-expo);
}

.image-card:hover .image-placeholder {
  transform: scale(1.1);
  opacity: 0.5;
}

/* Services Section */
.services-section {
  background: var(--landing-bg);
  padding: 8rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--landing-border);
  border-radius: 1.5rem;
  background: var(--landing-card-bg);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out-expo);
  animation: fadeInUp 0.6s var(--ease-out-expo) backwards;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  box-shadow: var(--landing-shadow-sm);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  padding: 2px;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientRotate 4s linear infinite;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 0.5;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: transparent;
  box-shadow: var(--landing-shadow-lg);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  width: 100%;
}

.service-number {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  line-height: 1;
}

.service-image {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--landing-card-bg);
}

.service-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--landing-text);
  line-height: 1.3;
}

.service-card p {
  color: var(--landing-text-secondary);
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-size: 1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  transform: translateX(4px);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(2px);
}

/* Contact Section */
.contact-section {
  background: var(--landing-card-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--landing-shadow-sm);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--landing-text-secondary);
}

.contact-item a,
.contact-item span {
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.7;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--landing-bg);
  border: 2px solid var(--landing-border);
  border-radius: 0.75rem;
  color: var(--landing-text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--landing-accent);
  background: var(--landing-card-bg);
  box-shadow: 0 0 0 4px rgba(12, 83, 67, 0.08);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--landing-text-secondary);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light, var(--landing-accent)));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(12, 83, 67, 0.25);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12, 83, 67, 0.35);
}

/* Footer */
.landing-footer {
  position: relative;
  background: #0a0a0a;
  color: #ffffff;
  overflow: hidden;
}

/* Wave Divider Animation */
.wave-divider {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--landing-bg);
}

.wave-path {
  animation: wave-flow 8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wave-flow {
  0%, 100% {
    d: path("M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z");
  }
  50% {
    d: path("M0,32L48,42.7C96,53,192,75,288,80C384,85,480,75,576,64C672,53,768,43,864,48C960,53,1056,75,1152,80C1248,85,1344,75,1392,69.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z");
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 2rem;
}

/* Footer CTA Section */
.footer-cta {
  padding: 4rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: #ffffff;
}

.italic-text {
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: #ffffff;
  color: #0a0a0a;
  border: 2px solid #ffffff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.footer-cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.footer-cta-button:hover::before {
  transform: translateX(100%);
}

.footer-cta-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

/* Footer Main Content */
.footer-main {
  padding: 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.5s var(--ease-out-expo);
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s backwards;
}

.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(255, 90, 0, 0.5));
  transform: translateY(-4px) scale(1.05);
}

.footer-tagline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s backwards;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: #FF5A00;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.footer-social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--landing-accent), var(--landing-accent-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.footer-social-links a:hover::before {
  opacity: 1;
}

.footer-social-links a svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out-expo);
}

.footer-social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(255, 90, 0, 0.3);
}

.footer-social-links a:hover svg {
  transform: rotate(5deg) scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FF5A00;
}

.footer-legal .separator {
  opacity: 0.4;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .nav-container {
    padding: 1.25rem 2rem;
  }

  section {
    padding: 6rem 2rem;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-cta {
    padding: 4rem 0 6rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    padding-bottom: 3rem;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-cta {
    padding: 4rem 0 6rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo-image {
    height: 36px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 80px);
    background: var(--landing-card-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 2rem;
    border-left: 1px solid var(--landing-border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero-section {
    padding: 6rem 1.5rem 4rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    padding: 3rem 0 4rem;
  }

  .footer-cta-title {
    font-size: 2rem;
  }

  .wave-divider {
    height: 80px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Improve text rendering */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
