* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a8ff60;
  --secondary: #00b09b;
  --accent: #96c93d;
  --dark: #0a0a0a;
  --darker: #000;
  --light: #f8f9fa;
  --gray: #bbb;
  --dark-gray: #aaa;
  --card-bg: rgba(10, 10, 10, 0.7);
  --card-border: rgba(168, 255, 96, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
  position: relative;
}

/* ANIMATED BACKGROUND */
.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* CSS 3D GLOBE */
.globe-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  z-index: 1;
}

.globe {
  width: 300px;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateGlobe 30s linear infinite;
}

@keyframes rotateGlobe {
  from { transform: rotateY(0deg) rotateX(15deg); }
  to { transform: rotateY(360deg) rotateX(15deg); }
}

.globe-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(168, 255, 96, 0.3);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.globe-ring:nth-child(1) { transform: rotateY(0deg); }
.globe-ring:nth-child(2) { transform: rotateY(30deg); }
.globe-ring:nth-child(3) { transform: rotateY(60deg); }
.globe-ring:nth-child(4) { transform: rotateY(90deg); }
.globe-ring:nth-child(5) { transform: rotateY(120deg); }
.globe-ring:nth-child(6) { transform: rotateY(150deg); }

.globe-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* FLOATING PARTICLES */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
  0% { 
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { 
    transform: translateY(-100px) translateX(var(--drift));
    opacity: 0;
  }
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--darker);
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(168, 255, 96, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(168, 255, 96, 0.6)); }
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0,176,155,0.3);
  position: relative;
  z-index: 10;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,176,155,0.5);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

.scroll-indicator::before {
  content: '↓';
  font-size: 2rem;
  color: var(--primary);
}
/* STORY SECTION */
.story {
  padding: 120px 20px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.story-intro {
  text-align: center;
  margin-bottom: 80px;
}

.story-intro h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.story-intro h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.story-intro p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 30px auto 0;
  line-height: 1.8;
}

/* JOURNEY CARDS WITH CSS 3D */
.journey {
  display: grid;
  gap: 60px;
  margin-top: 80px;
}

.journey-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--card-bg);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid var(--card-border);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.journey-card::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168,255,96,0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s;
}

.journey-card:hover::before {
  opacity: 1;
}

.journey-card:hover {
  background: rgba(20, 20, 20, 0.8);
  border-color: rgba(168,255,96,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.journey-card:nth-child(even) {
  direction: rtl;
}

.journey-card:nth-child(even) > * {
  direction: ltr;
}

.journey-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.journey-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.journey-text p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 5px;
}

.journey-link:hover {
  gap: 15px;
  color: var(--accent);
}

.journey-link::after {
  content: '→';
  font-size: 1.3rem;
  position: absolute;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.journey-link:hover::after {
  opacity: 1;
}

.journey-visual {
  border-radius: 20px;
  position: relative;
  min-height: 300px;
  border: 2px solid rgba(168,255,96,0.2);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,176,155,0.1), rgba(150,201,61,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

/* 3D SHAPES WITH CSS */
.shape-3d {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate3d 10s linear infinite;
}

@keyframes rotate3d {
  from { transform: rotateX(0deg) rotateY(0deg); }
  to { transform: rotateX(360deg) rotateY(360deg); }
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.cube-face {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(168, 255, 96, 0.1);
  border: 2px solid rgba(168, 255, 96, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  backdrop-filter: blur(10px);
}

.cube-face.front  { transform: translateZ(75px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(75px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(75px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(75px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(75px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(75px); }

/* NETWORK LINES ANIMATION */
.network-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.3;
  animation: moveLine 8s linear infinite;
}

@keyframes moveLine {
  0% { width: 0; left: 0; }
  50% { width: 100%; left: 0; }
  100% { width: 0; left: 100%; }
}

/* IMPACT SECTION */
.impact {
  padding: 120px 20px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.impact h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--card-bg);
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(168,255,96,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168,255,96,0.4);
  box-shadow: 0 20px 40px rgba(0,176,155,0.2);
  background: rgba(20, 20, 20, 0.8);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  position: relative;
}

.stat-label {
  color: var(--dark-gray);
  font-size: 1.1rem;
  font-weight: 300;
}

.product-story {
  position: relative;
  padding: 80px 0;
  background: var(--darker);
  color: #fff;
}

.product-story-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.product-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-story-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.product-story-card:hover {
  transform: translateY(-5px);
}

.product-story-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-story-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: transform 0.6s ease;
}

.product-story-card:hover img {
  transform: scale(1.05);
}

.product-story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  z-index: 2;
}

.product-story-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.product-story-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}


/* FINAL CTA */
.final-cta {
  padding: 120px 20px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.final-cta h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.final-cta p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 50px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,176,155,0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,176,155,0.5);
  color: #fff;
}

.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cta-secondary:hover {
  background: rgba(168,255,96,0.1);
  transform: translateY(-3px);
  color: var(--primary);
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .journey-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  
  .journey-card:nth-child(even) {
    direction: ltr;
  }
  
  .journey-visual {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .globe {
    width: 200px;
    height: 200px;
  }
  
  .shape-3d {
    width: 100px;
    height: 100px;
  }
  
  .cube-face {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .cube-face.front  { transform: translateZ(50px); }
  .cube-face.back   { transform: rotateY(180deg) translateZ(50px); }
  .cube-face.right  { transform: rotateY(90deg) translateZ(50px); }
  .cube-face.left   { transform: rotateY(-90deg) translateZ(50px); }
  .cube-face.top    { transform: rotateX(90deg) translateZ(50px); }
  .cube-face.bottom { transform: rotateX(-90deg) translateZ(50px); }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .story-intro h2, .impact h2, .product-story h2, .final-cta h2 {
    font-size: 2.2rem;
  }
  
  .journey-card {
    padding: 20px;
  }
}