:root {
  --green-dark: #0a1f14;
  --green-mid: #143826;
  --green-accent: #1e5c3e;
  --green-light: #2eb872;
  --green-pale: #e6f4eb;
  --green-ultra-pale: #f2f9f5;
  --cream: #fcfcfc;
  --white: #ffffff;
  --text-dark: #08140c;
  --text-mid: #2e4539;
  --text-muted: #647a6d;
  --border: #e0ece5;
  --shadow: 0 8px 30px rgba(10, 31, 20, 0.05);
  --shadow-lg: 0 20px 40px rgba(10, 31, 20, 0.1);
  --shadow-glass: 0 8px 32px rgba(10, 31, 20, 0.08);
}

/* ═══ MODERN FONT STACK ═══
   Primary: Geist - Modern, clean, highly legible sans-serif
   Headings: Plus Jakarta Sans - Bold, contemporary heading font
   Labels: Work Sans - Professional, geometric sans-serif
   Fallback: System fonts for fast loading
═══════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 100px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LOGO */
.logo-img {
  height: 60px;
}

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

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a4a4a;
  text-decoration: none;
  position: relative;
}

/* Hover underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2eb872, #0f3d2e);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #0f3d2e;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTON */
.btn-nav {
  background: linear-gradient(135deg, #0f3d2e, #2eb872);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-nav::after {
  display: none;
}

/* ================= DROPDOWN ================= */

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;

  min-width: 180px;
  padding: 6px 0;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);

  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;

  list-style: none;
}

/* Dropdown items */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #444;
  text-decoration: none;
}

/* Hover */
.dropdown-menu li a:hover {
  background: rgba(46, 184, 114, 0.08);
  color: #2eb872;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ───── HERO ───── */
.hero {
  margin-top: 76px;
  min-height: 92vh;
  background: linear-gradient(135deg, #f2f9f5 0%, #ffffff 50%, #e6f4eb 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 20%, rgba(46, 184, 114, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(20, 56, 38, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(46, 184, 114, 0.15), transparent 70%);
  animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -60px;
  left: 10%;
  background: radial-gradient(circle, rgba(30, 92, 62, 0.1), transparent 70%);
  animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(46, 184, 114, 0.08), transparent 70%);
  animation: orbFloat3 6s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1) }
  33% { transform: translate(-30px, 40px) scale(1.1) }
  66% { transform: translate(20px, -20px) scale(0.95) }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1) }
  50% { transform: translate(40px, -50px) scale(1.15) }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6 }
  50% { transform: translate(-20px, 30px) scale(1.2); opacity: 1 }
}

.hero-badge { animation: fadeUp 0.6s 0.1s ease both; }
.hero h1 { animation: fadeUp 0.7s 0.25s ease both; }
.hero p { animation: fadeUp 0.7s 0.4s ease both; }
.hero-cta { animation: fadeUp 0.7s 0.55s ease both; }

.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--green-accent);
  margin-left: 4px;
  vertical-align: middle;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1 }
  50% { opacity: 0 }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-text { animation: fadeUp 0.8s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(10, 31, 20, 0.04);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '●';
  font-size: 0.6rem;
  color: var(--green-light);
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--green-light), var(--green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(10, 31, 20, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 31, 20, 0.25);
}

.btn-outline {
  background: #fff;
  color: var(--green-dark);
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-outline:hover {
  border-color: var(--green-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* ───── VIDEO WALL ───── */
.hero-visual { animation: fadeUp 0.8s 0.2s ease both; position: relative; }

.videowall-wrapper {
  position: relative;
  padding: 12px;
  background: #050a07;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(10, 31, 20, 0.35), 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vw-brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 10px;
}

.vw-brand-name {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vw-status {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vw-led {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 6px #28c840;
  animation: ledBlink 2s ease-in-out infinite;
}

@keyframes ledBlink {
  0%, 100% { opacity: 1 }
  50% { opacity: 0.4 }
}

.vw-status-txt {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
}

.videowall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.vw-panel {
  position: relative;
  overflow: hidden;
  background: #0a1a10;
}

.vw-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 10;
}

.vw-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 9;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px);
  pointer-events: none;
}

.vw-panel.p1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #0d2b1a 0%, #1a4a28 50%, #0a1f10 100%);
}

.p1-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(82, 183, 136, 0.22) 0%, transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(61, 139, 95, 0.15) 0%, transparent 50%);
  animation: bgPulse 4s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1 }
  50% { opacity: 0.7 }
}

.p1-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 8px;
}

.p1-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
  animation: fadeSlideIn 1s ease both;
}

.p1-headline {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: #fff;
  line-height: 1.15;
  text-align: center;
  animation: fadeSlideIn 1s 0.15s ease both;
}

.p1-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  animation: fadeSlideIn 1s 0.3s ease both;
}

.p1-badge {
  margin-top: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeSlideIn 1s 0.45s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.p1-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.ticker-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--green-light);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.ticker-scroll {
  display: flex;
  gap: 40px;
  animation: tickerMove 18s linear infinite;
}

.ticker-item {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.vw-panel.p2 {
  background: linear-gradient(160deg, #071510 0%, #0f2a1a 100%);
  grid-column: 3;
  grid-row: 1;
}

.p2-content {
  position: absolute;
  inset: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
}

.p2-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.p2-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p2-stat-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.p2-stat-val {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.p2-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 2px;
}

.p2-bar-fill {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-accent));
}

.vw-panel.p3 {
  background: #060f0a;
  grid-column: 3;
  grid-row: 2;
  overflow: hidden;
}

.p3-map {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 14px, rgba(82, 183, 136, 0.07) 14px, rgba(82, 183, 136, 0.07) 15px),
    repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(82, 183, 136, 0.07) 14px, rgba(82, 183, 136, 0.07) 15px),
    #060f0a;
}

.p3-content {
  position: absolute;
  inset: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p3-label {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.p3-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 8px var(--green-light);
  animation: pinPulse 2s ease-in-out infinite;
}

.p3-pin::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green-light);
  opacity: 0.4;
  animation: pinRing 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1) }
  50% { transform: scale(1.3) }
}

@keyframes pinRing {
  0% { transform: scale(1); opacity: 0.4 }
  100% { transform: scale(2.5); opacity: 0 }
}

.p3-route {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-accent), transparent);
  border-radius: 1px;
  animation: routeFlash 3s ease-in-out infinite;
}

@keyframes routeFlash {
  0%, 100% { opacity: 0.3 }
  50% { opacity: 1 }
}

.p3-you {
  font-size: 0.45rem;
  color: rgba(255, 255, 255, 0.5);
}

.vw-glow {
  position: absolute;
  inset: -20px;
  border-radius: 30px;
  background: radial-gradient(ellipse at 50% 50%, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6 }
  50% { opacity: 1 }
}

.vw-float-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(82, 183, 136, 0.5);
  animation: floatBadge 3s ease-in-out infinite;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-5px) }
}

/* ───── TRUST BAR MARQUEE ───── */
.trust-bar { overflow: hidden; position: relative; }

.trust-marquee {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.trust-marquee-wrap { display: flex; overflow: hidden; }

.trust-org {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.trust-org::before {
  content: '●';
  color: var(--green-light);
  font-size: 0.5rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

/* ───── SECTION COMMON ───── */
section { padding: 90px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.section-title {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ───── MADE EASY ───── */
.made-easy { background: var(--white); }

.made-easy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* ── WHY HYZIGN RIGHT IMAGE ── */
.why-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Give room for floating */
  perspective: 1200px; /* Enable 3D depth */
}

.why-image-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 40px 100px rgba(10, 31, 20, 0.2),
    0 10px 30px rgba(10, 31, 20, 0.1);
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.6s ease;
  animation: floatingImage 8s ease-in-out infinite;
  transform-style: preserve-3d;
  border: 1px solid rgba(46, 184, 114, 0.15);
}

.why-showcase-img {
  width: 100%;
  max-width: 820px;
  height: 520px;
  object-fit: cover;
  display: block;
}

.why-image-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
  animation: shineGlint 8s infinite;
}

.why-image-wrap:hover .why-image-inner {
  transform: translateY(-20px) scale(1.04) rotate(0.5deg);
  box-shadow: 
    0 60px 120px rgba(10, 31, 20, 0.3),
    0 20px 40px rgba(46, 184, 114, 0.15);
  animation-play-state: paused;
}

/* Floating glow background */
.why-image-glow {
  position: absolute;
  inset: -18px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 50%, rgba(46, 184, 114, 0.12) 0%, transparent 70%);
  z-index: 0;
  animation: whyGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes whyGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

@keyframes floatingImage {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

@keyframes shineGlint {
  0%   { left: -100%; opacity: 0; }
  15%  { left: 150%; opacity: 1; }
  35%  { left: 150%; opacity: 0; }
  100% { left: 150%; opacity: 0; }
}

.why-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 6px var(--green-light);
  animation: ledBlink 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes floatBadgeWhy {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Bottom stats overlay */
.why-image-overlay {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(10, 31, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 184, 114, 0.2);
  border-radius: 14px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.why-overlay-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.why-stat-num {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.why-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.why-overlay-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.platform-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.plat-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.plat-icon.appeared {
  opacity: 1;
  transform: translateY(0);
}

.plat-icon:nth-child(1) { transition-delay: 0.05s; }
.plat-icon:nth-child(2) { transition-delay: 0.15s; }
.plat-icon:nth-child(3) { transition-delay: 0.25s; }
.plat-icon:nth-child(4) { transition-delay: 0.35s; }
.plat-icon:nth-child(5) { transition-delay: 0.45s; }

.plat-icon .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: var(--green-ultra-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  transition: transform 0.2s;
}

.plat-icon:hover .icon-box { transform: scale(1.12); }

.network-diagram {
  background: linear-gradient(135deg, #e8f5ee, #f0faf3);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.net-cloud {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 80px;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 280px;
}

.net-arrow-down {
  font-size: 1.8rem;
  color: var(--green-accent);
  font-weight: 200;
  height: 20px;
  line-height: 20px;
  position: relative;
  overflow: visible;
}

.net-arrow-down .flow-dot {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 12px var(--green-light);
  animation: flowDown 1.6s ease-in-out infinite;
}

@keyframes flowDown {
  0% { top: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.net-server {
  background: var(--green-dark);
  color: #fff;
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  animation: serverPulse 2.8s ease-in-out infinite;
  min-width: 220px;
}

@keyframes serverPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(26, 61, 43, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(82, 183, 136, 0.5), 0 0 0 4px rgba(82, 183, 136, 0.15); }
}

/* MAIN DEVICES CONTAINER BOX */
.net-devices-container {
  background: #fff;
  border: 2px solid var(--green-light);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(10, 31, 20, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 500px;
}

/* First row - 3 devices */
.net-devices-row-3 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* Second row - 2 devices */
.net-devices-row-2 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* Device box styling */
.net-device-box {
  background: var(--green-ultra-pale);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(10, 31, 20, 0.04);
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 3s ease-in-out infinite;
}

.net-device-box:nth-child(1) { animation-delay: 0s; }
.net-device-box:nth-child(2) { animation-delay: 0.3s; }
.net-device-box:nth-child(3) { animation-delay: 0.6s; }
.net-devices-row-2 .net-device-box:nth-child(1) { animation-delay: 0.9s; }
.net-devices-row-2 .net-device-box:nth-child(2) { animation-delay: 1.2s; }

.net-device-box:hover {
  transform: translateY(-6px) scale(1.06);
  border-color: var(--green-accent);
  box-shadow: 0 10px 28px rgba(46, 184, 114, 0.15);
  background: #fff;
  border: 1px solid var(--green-light);
}

.dev-icon {
  font-size: 2rem;
}

.dev-name {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.3px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ───── FEATURES ───── */
.features { background: var(--cream); }

.features-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.feat-card {
  background: linear-gradient(145deg, #ffffff, #fcfcfc);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  cursor: default;
}

.feat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(10, 31, 20, 0.12);
}

.feat-card:hover .feat-icon { transform: scale(1.15) rotate(-5deg); }

.feat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-ultra-pale), #fff);
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 31, 20, 0.03);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feat-card h3 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ───── INDUSTRIES ───── */
.industries { background: #fff; }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.ind-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.ind-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(46, 184, 114, 0.08) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.ind-item:hover {
  transform: translateY(-8px);
  background: var(--green-ultra-pale);
  border-color: rgba(46, 184, 114, 0.3);
  box-shadow: 0 15px 35px rgba(10, 31, 20, 0.08);
}

.ind-item:hover::before { opacity: 1; }

.ind-item .ind-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ind-item:hover .ind-icon { transform: scale(1.15) translateY(-2px); }

/* ───── SCROLL ANIMATIONS ───── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ───── BUTTON RIPPLE ───── */
.btn-primary, .btn-outline, .btn-white, .btn-nav {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .btn-outline::after, .btn-white::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn-primary:active::after, .btn-outline:active::after, .btn-white:active::after {
  opacity: 1;
  transform: scale(2.5);
}

/* ───── SCROLL PROGRESS BAR ───── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 2px;
  width: 0%;
  background: var(--green-light);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(46, 184, 114, 0.4);
}

/* ───── FOOTER ───── */
footer {
  background: linear-gradient(135deg, #001428 0%, #001f3d 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(46, 184, 114, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.footer-content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand { gap: 20px; }

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.footer-links a:hover {
  color: var(--green-light);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(46, 184, 114, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(46, 184, 114, 0.3);
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn:nth-child(1):hover { color: #1877f2; }
.social-btn:nth-child(2):hover { color: #e4405f; }
.social-btn:nth-child(3):hover { color: #0a66c2; }
.social-btn:nth-child(4):hover { color: #ff0000; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ───── NAV SCROLL EFFECT ───── */
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(26, 61, 43, 0.12);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  .hero-grid, .made-easy-grid, .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  nav .nav-links { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
}

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

/* ───── CHATBOT ICON ───── */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  animation: floatChat 3s ease-in-out infinite;
}

.chatbot-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(46, 184, 114, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white);
  border: 2px solid var(--green-light);
  object-fit: cover;
  display: block;
}

.chatbot-container:hover .chatbot-icon {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 30px rgba(46, 184, 114, 0.6);
}

.chatbot-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #e4405f;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid white;
  z-index: 10;
}

@keyframes floatChat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
