/* =================================
   EKOTKNAJE - TECH FUTURISTIC DESIGN
   CSS Reset & Base Styles
   ================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* =================================
   TYPOGRAPHY - FUTURISTIC STYLE
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #4dd0e1;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #b0bec5;
}

a {
  color: #00ff88;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #4dd0e1;
  text-shadow: 0 0 10px rgba(77, 208, 225, 0.5);
}

ul {
  list-style: none;
}

strong {
  color: #00ff88;
  font-weight: 600;
}

blockquote {
  border-left: 4px solid #00ff88;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #90caf9;
  background: rgba(0, 255, 136, 0.05);
  padding: 20px 20px 20px 24px;
  border-radius: 0 8px 8px 0;
}

/* =================================
   CONTAINER & LAYOUT
   ================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* =================================
   HEADER - FUTURISTIC NAVIGATION
   ================================= */

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 255, 136, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  flex-wrap: wrap;
}

header a img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
  transition: all 0.3s ease;
}

header a img:hover {
  filter: drop-shadow(0 0 20px rgba(77, 208, 225, 0.8));
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #b0bec5;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, #4dd0e1);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* =================================
   MOBILE MENU - FUTURISTIC OVERLAY
   ================================= */

.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #00ff88, #4dd0e1);
  border: none;
  color: #0a0e27;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 255, 136, 0.3);
  border-left: 2px solid rgba(0, 255, 136, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 64, 129, 0.2);
  border: 2px solid #ff4081;
  color: #ff4081;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 64, 129, 0.3);
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #b0bec5;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #00ff88, #4dd0e1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav a:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  padding-left: 30px;
}

.mobile-nav a:hover::before {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* =================================
   HERO SECTIONS - FUTURISTIC GRADIENT
   ================================= */

.hero {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 80px 20px;
  border-bottom: 3px solid rgba(0, 255, 136, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(77, 208, 225, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00ff88, #4dd0e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
  }
  to {
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 60px rgba(77, 208, 225, 0.4);
  }
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: #90caf9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .highlight {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 255, 136, 0.15);
  border: 2px solid rgba(0, 255, 136, 0.5);
  border-radius: 30px;
  color: #00ff88;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

/* =================================
   BUTTONS - NEON STYLE
   ================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88, #00cc6f);
  color: #0a0e27;
  border: 2px solid #00ff88;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00cc6f, #00ff88);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #4dd0e1;
  border: 2px solid #4dd0e1;
  box-shadow: 0 4px 20px rgba(77, 208, 225, 0.3);
}

.btn-secondary:hover {
  background: rgba(77, 208, 225, 0.1);
  box-shadow: 0 6px 30px rgba(77, 208, 225, 0.5);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =================================
   SECTIONS - CONSISTENT SPACING
   ================================= */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #4dd0e1);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.supporting-text {
  text-align: center;
  font-size: 18px;
  color: #90caf9;
  margin-top: 32px;
}

/* =================================
   CARDS - FUTURISTIC GLASS EFFECT
   ================================= */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.card {
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

/* =================================
   STATS GRID - IMPACT NUMBERS
   ================================= */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 200px;
  background: rgba(0, 255, 136, 0.05);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00ff88, #4dd0e1);
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.stat-card:hover::after {
  opacity: 0.2;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
  font-size: 16px;
  color: #b0bec5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================
   SERVICES & COLLECTIONS GRID
   ================================= */

.services-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.collection-card {
  flex: 1 1 300px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77, 208, 225, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #4dd0e1);
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before,
.collection-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.collection-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
}

.service-card h3,
.collection-card h2 {
  color: #4dd0e1;
  margin-bottom: 16px;
}

.service-card p,
.collection-card p {
  color: #90caf9;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #00ff88;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.features li {
  padding-left: 28px;
  position: relative;
  color: #b0bec5;
  font-size: 14px;
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-weight: 700;
  font-size: 16px;
}

/* =================================
   PROCESS STEPS - TIMELINE STYLE
   ================================= */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  position: relative;
}

.step {
  flex: 1 1 250px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -28px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.5), transparent);
  transform: translateY(-50%);
}

.step:last-child::after {
  display: none;
}

.step:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.step h3 {
  color: #00ff88;
  margin-bottom: 16px;
  font-size: 20px;
}

.step p {
  color: #90caf9;
  font-size: 14px;
}

/* =================================
   BENEFITS GRID
   ================================= */

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  flex: 1 1 250px;
  background: rgba(77, 208, 225, 0.05);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 208, 225, 0.6);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
  background: rgba(77, 208, 225, 0.1);
}

.benefit-card h3 {
  color: #4dd0e1;
  margin-bottom: 16px;
}

.benefit-card p {
  color: #90caf9;
}

/* =================================
   TESTIMONIALS - DARK READABLE
   ================================= */

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  background: rgba(176, 190, 197, 0.95);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(0, 255, 136, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
  border-color: rgba(0, 255, 136, 0.5);
}

.testimonial-card p {
  color: #263238;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid rgba(0, 255, 136, 0.3);
  padding-top: 16px;
}

.testimonial-author strong {
  color: #0a0e27;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #546e7a;
  font-size: 14px;
}

/* =================================
   STORY SECTIONS
   ================================= */

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.mission-block,
.vision-block {
  flex: 1 1 400px;
  background: rgba(0, 255, 136, 0.05);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.mission-block:hover,
.vision-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
  border-color: rgba(0, 255, 136, 0.5);
}

.values {
  background: rgba(77, 208, 225, 0.05);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.values li {
  padding-left: 32px;
  position: relative;
  color: #90caf9;
}

.values li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #4dd0e1;
  font-size: 20px;
}

/* =================================
   CERTIFICATIONS & LISTS
   ================================= */

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.cert-list li {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  padding: 16px 16px 16px 48px;
  position: relative;
  color: #90caf9;
  transition: all 0.3s ease;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #00ff88;
  font-size: 20px;
  font-weight: 700;
}

.cert-list li:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: translateX(8px);
  border-color: rgba(0, 255, 136, 0.5);
}

.cert-note {
  text-align: center;
  margin-top: 32px;
  color: #4dd0e1;
  font-style: italic;
}

/* =================================
   IMPACT & METRICS
   ================================= */

.metrics-grid,
.impact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.metric-card,
.impact-card {
  flex: 1 1 250px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.metric-card:hover,
.impact-card:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

.metric-number {
  font-size: 48px;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.metric-label {
  font-size: 16px;
  color: #4dd0e1;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-card p,
.impact-card p {
  font-size: 14px;
  color: #90caf9;
}

.impact-card h3 {
  color: #00ff88;
  margin-bottom: 16px;
}

/* =================================
   LIFECYCLE & PARTNERSHIPS
   ================================= */

.lifecycle-phases,
.partnership-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.phase,
.partnership-card {
  flex: 1 1 280px;
  background: rgba(77, 208, 225, 0.05);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.phase:hover,
.partnership-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
}

.phase h3,
.partnership-card h3 {
  color: #4dd0e1;
  margin-bottom: 16px;
}

.commitment {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(0, 255, 136, 0.05);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  color: #00ff88;
  font-weight: 600;
}

/* =================================
   CERT GRID
   ================================= */

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.cert-card {
  flex: 1 1 280px;
  background: rgba(0, 255, 136, 0.05);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.cert-card:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

.cert-card h3 {
  color: #00ff88;
  margin-bottom: 16px;
}

/* =================================
   STORIES & FEATURED CONTENT
   ================================= */

.story-header {
  text-align: center;
  margin-bottom: 40px;
}

.story-category {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  color: #00ff88;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.story-author {
  color: #4dd0e1;
  font-style: italic;
  margin-bottom: 8px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.story-card {
  flex: 1 1 350px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77, 208, 225, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
}

.story-card h3 {
  color: #4dd0e1;
  margin-bottom: 12px;
}

.story-card .story-author {
  font-size: 14px;
  margin-bottom: 16px;
}

.voices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.voice-card {
  flex: 1 1 300px;
  background: rgba(176, 190, 197, 0.95);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.voice-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.voice-card p {
  color: #263238;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 15px;
}

.voice-author {
  color: #546e7a;
  font-size: 14px;
  font-weight: 600;
}

/* =================================
   CONTACT SECTIONS
   ================================= */

.response-time {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(77, 208, 225, 0.1);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 20px;
  color: #4dd0e1;
  font-weight: 600;
  margin-top: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 300px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

.contact-card h2 {
  color: #00ff88;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-card a {
  color: #4dd0e1;
}

/* =================================
   FORM STYLING - FUTURISTIC
   ================================= */

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 40px;
}

.form-note {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(77, 208, 225, 0.05);
  border: 1px solid rgba(77, 208, 225, 0.3);
  border-radius: 8px;
}

.form-note p {
  color: #90caf9;
  font-size: 14px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #4dd0e1;
  font-weight: 600;
  font-size: 14px;
}

.field-placeholder {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  color: #78909c;
  font-size: 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.submit-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.submit-note p {
  font-size: 12px;
  color: #78909c;
  margin-bottom: 16px;
}

/* =================================
   FAQ & INQUIRY GRIDS
   ================================= */

.faq-grid,
.inquiry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.faq-card,
.inquiry-card {
  flex: 1 1 300px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(77, 208, 225, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-card:hover,
.inquiry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
}

.faq-card h3,
.inquiry-card h3 {
  color: #4dd0e1;
  margin-bottom: 16px;
}

/* =================================
   CTA SECTIONS
   ================================= */

.cta-section,
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(77, 208, 225, 0.1));
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cta-section h2,
.cta-banner h2 {
  position: relative;
  z-index: 2;
}

.cta-section p,
.cta-banner p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: #90caf9;
  margin-bottom: 32px;
}

.cta-section .cta-buttons,
.cta-banner .cta-buttons {
  position: relative;
  z-index: 2;
}

/* =================================
   THANK YOU PAGE
   ================================= */

.thank-you-content {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ff88, #00cc6f);
  border-radius: 50%;
  font-size: 60px;
  color: #0a0e27;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card {
  flex: 1 1 280px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4dd0e1, #26c6da);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: #0a0e27;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(77, 208, 225, 0.4);
}

.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.explore-card {
  flex: 1 1 300px;
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.explore-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

.explore-card h3 {
  color: #00ff88;
  margin-bottom: 16px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 280px;
  background: rgba(77, 208, 225, 0.05);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #4dd0e1;
  margin-bottom: 16px;
}

/* =================================
   LEGAL CONTENT
   ================================= */

.legal-content {
  padding: 40px 20px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 16px;
}

.updated {
  text-align: center;
  color: #78909c;
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-content .text-section {
  background: rgba(26, 31, 58, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 40px;
}

.legal-content h2 {
  color: #00ff88;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  color: #4dd0e1;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  color: #90caf9;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00ff88;
  font-size: 20px;
}

/* =================================
   MATERIAL GRID
   ================================= */

.material-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.material-card {
  flex: 1 1 280px;
  background: rgba(77, 208, 225, 0.05);
  border: 2px solid rgba(77, 208, 225, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.material-card:hover {
  transform: scale(1.05);
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 12px 40px rgba(77, 208, 225, 0.3);
}

.material-card h3 {
  color: #4dd0e1;
  margin-bottom: 16px;
}

/* =================================
   CARE GUIDE
   ================================= */

.care-guide ul {
  max-width: 600px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.care-guide li {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  padding: 16px 16px 16px 48px;
  position: relative;
  color: #90caf9;
}

.care-guide li::before {
  content: '→';
  position: absolute;
  left: 16px;
  color: #00ff88;
  font-size: 20px;
}

/* =================================
   FOOTER - FUTURISTIC
   ================================= */

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 3px solid rgba(0, 255, 136, 0.3);
  padding: 60px 0 20px;
  margin-top: 80px;
  box-shadow: 0 -4px 20px rgba(0, 255, 136, 0.2);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column img {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.footer-column h3 {
  color: #00ff88;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: #90caf9;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column nav a {
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.footer-column nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00ff88;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-column nav a:hover {
  color: #00ff88;
  padding-left: 20px;
}

.footer-column nav a:hover::before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-bottom p {
  color: #78909c;
  font-size: 14px;
}

/* =================================
   COOKIE CONSENT BANNER
   ================================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 3px solid rgba(0, 255, 136, 0.5);
  padding: 24px;
  z-index: 2000;
  box-shadow: 0 -4px 30px rgba(0, 255, 136, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 400px;
  color: #90caf9;
  font-size: 14px;
}

.cookie-text a {
  color: #00ff88;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

#cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(26, 31, 58, 0.98);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 255, 136, 0.5);
  border-radius: 16px;
  padding: 40px;
  z-index: 2001;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#cookie-settings.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

#cookie-settings h2 {
  color: #00ff88;
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #4dd0e1;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #90caf9;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #00ff88;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cookie-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* =================================
   RESPONSIVE DESIGN - MOBILE
   ================================= */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .metric-number {
    font-size: 36px;
  }
  
  .service-card,
  .collection-card,
  .stat-card,
  .benefit-card,
  .testimonial-card,
  .story-card,
  .step,
  .phase,
  .partnership-card,
  .contact-card,
  .material-card {
    flex: 1 1 100%;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  #cookie-settings {
    width: 95%;
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons .btn {
    width: 100%;
  }
}

/* =================================
   ANIMATIONS & TRANSITIONS
   ================================= */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =================================
   UTILITY CLASSES
   ================================= */

.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* =================================
   SCROLLBAR STYLING
   ================================= */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 14, 39, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00ff88, #4dd0e1);
  border-radius: 6px;
  border: 2px solid rgba(10, 14, 39, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #4dd0e1, #00ff88);
}

/* =================================
   ACCESSIBILITY
   ================================= */

*:focus {
  outline: 2px solid #00ff88;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* =================================
   END OF STYLESHEET
   ================================= */