/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(2, 189, 76, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 189, 76, 0.02), rgba(248, 211, 6, 0.02));
  pointer-events: none;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(2, 189, 76, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  transition: all 0.6s ease;
  filter: drop-shadow(0 4px 15px rgba(2, 189, 76, 0.3));
}

.logo-icon:hover {
  transform: rotate(360deg);
  filter: drop-shadow(0 6px 20px rgba(2, 189, 76, 0.4));
}


/* Section Logo */
.section-logo {
  width: 35px;
  height: 35px;
  margin-left: 15px;
  vertical-align: middle;
  transition: all 0.6s ease;
  filter: drop-shadow(0 4px 15px rgba(2, 189, 76, 0.3));
}

.section-logo:hover {
  transform: rotate(360deg);
  filter: drop-shadow(0 6px 20px rgba(2, 189, 76, 0.4));
}

/* Waitlist Logo */
.waitlist-logo {
  width: 45px;
  height: 45px;
  margin-left: 15px;
  vertical-align: middle;
  transition: all 0.6s ease;
  filter: drop-shadow(0 4px 15px rgba(248, 211, 6, 0.3));
}

.waitlist-logo:hover {
  transform: rotate(360deg);
  filter: drop-shadow(0 6px 20px rgba(248, 211, 6, 0.4));
}

.nav-logo h2 {
  background: linear-gradient(45deg, #02bd4c, #019a3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
}

.nav-link:hover {
  color: #02bd4c;
  background: rgba(2, 189, 76, 0.1);
  transform: translateY(-2px);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(2, 189, 76, 0.1), rgba(248, 211, 6, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1A1A1A;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: 
    linear-gradient(135deg, #02bd4c 0%, #019a3f 50%, #017a32 100%),
    radial-gradient(circle at 25% 25%, rgba(248, 211, 6, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 75% 75%, rgba(2, 189, 76, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 50% 10%, rgba(1, 154, 63, 0.25) 0%, transparent 40%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    ),
    repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 3px,
      rgba(248, 211, 6, 0.03) 3px,
      rgba(248, 211, 6, 0.03) 6px
    );
  z-index: 1;
  animation: textureMove 25s linear infinite;
}

@keyframes textureMove {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(20px) translateY(20px); }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="400" cy="700" r="250" fill="url(%23a)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease 0.5s forwards;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-line {
  display: block;
  color: white;
}

.hero-welcome {
  font-size: 3.5rem;
  font-weight: 950;
  line-height: 1.1;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease 0.6s forwards;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.welcome-text {
  display: block;
  color: #f8d306;
}

.brand-text {
  display: block;
  color: #f8d306;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease 0.7s forwards;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease 0.9s forwards;
}

.btn {
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::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.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary {
  background: white;
  color: #02bd4c;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(2, 189, 76, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #02bd4c;
}

.btn-outline {
  background: transparent;
  color: #02bd4c;
  border: 2px solid #02bd4c;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.01em;
}

.btn-outline:hover {
  background: #02bd4c;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(2, 189, 76, 0.4);
  border-color: #02bd4c;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease 0.8s forwards;
}

.app-mockup {
  width: 300px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1A1A1A;
}

/* How It Works Section */
.how-it-works {
  background: 
    #F8F9FA,
    radial-gradient(circle at 20% 20%, rgba(2, 189, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 211, 6, 0.03) 0%, transparent 60%),
    linear-gradient(135deg, transparent 30%, rgba(2, 189, 76, 0.02) 50%, transparent 70%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 1px,
      rgba(2, 189, 76, 0.01) 1px,
      rgba(2, 189, 76, 0.01) 2px
    );
  z-index: 1;
}

.how-it-works .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-it-works-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1A1A1A;
  text-align: left;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.how-it-works-content p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: 
    linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%),
    radial-gradient(circle at 10% 20%, rgba(2, 189, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(248, 211, 6, 0.03) 0%, transparent 60%);
  border-radius: 20px;
  border-left: 4px solid #f8d306;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-30px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(2, 189, 76, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1px,
      rgba(2, 189, 76, 0.02) 1px,
      rgba(2, 189, 76, 0.02) 2px
    );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card.animate {
  opacity: 1;
  transform: translateX(0);
}

.step-card:hover {
  transform: translateX(5px) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-left-color: #02bd4c;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(2, 189, 76, 0.3);
  position: relative;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #02bd4c, #f8d306);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(2, 189, 76, 0.4);
}

.step-card:hover .step-icon::before {
  opacity: 1;
}

.step-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}


.step-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #02bd4c;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* Phone Screenshot Styling */
.phone-screenshot-container {
  position: relative;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-screenshot {
  width: 320px;
  height: auto;
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.phone-screenshot:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(2deg) scale(1.05);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.4),
    0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for phone screenshot */
@media (max-width: 768px) {
  .phone-screenshot {
    width: 280px;
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg);
  }
  
  .phone-screenshot:hover {
    transform: perspective(1000px) rotateY(2deg) rotateX(1deg) scale(1.02);
  }
}

@media (max-width: 480px) {
  .phone-screenshot {
    width: 250px;
    transform: perspective(1000px) rotateY(2deg) rotateX(1deg);
  }
}

.roadmap-cta {
  text-align: center;
  margin-top: 60px;
}

/* GoFundMe Section */
.gofundme-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.gofundme-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(2, 189, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 211, 6, 0.03) 0%, transparent 60%);
  z-index: 1;
}

.gofundme-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.gofundme-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 20px auto 40px;
}

.funding-purposes {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: left;
}

.funding-purposes h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-align: center;
}

.purpose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purpose-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.purpose-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #02bd4c;
  font-weight: bold;
  font-size: 1.2rem;
}

.gofundme-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.gofundme-image-container {
  position: relative;
}

.gofundme-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gofundme-image:hover {
  transform: translateY(-5px);
}

.gofundme-info {
  text-align: left;
}

.funding-goal {
  margin-bottom: 30px;
}

.goal-amount {
  font-size: 3rem;
  font-weight: 900;
  color: #02bd4c;
  line-height: 1;
  margin-bottom: 5px;
}

.goal-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

.funding-progress {
  margin-bottom: 30px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #e9ecef;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #02bd4c, #019a3f);
  border-radius: 6px;
  transition: width 0.8s ease;
}

.progress-text {
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
}

.funding-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #02bd4c;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #000000;
  font-weight: 600;
}

.gofundme-btn {
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  color: white;
  padding: 18px 36px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(2, 189, 76, 0.3);
  position: relative;
  overflow: hidden;
}

.gofundme-btn::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.6s ease;
}

.gofundme-btn:hover::before {
  left: 100%;
}

.gofundme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(2, 189, 76, 0.4);
}

.gofundme-btn .btn-icon {
  font-size: 1.3rem;
}

.gofundme-btn .btn-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.gofundme-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* App Screenshots Section */
/* App Screenshots Section */
.app-screenshots {
  background: #F8F9FA;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.app-screenshots::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(2, 189, 76, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 211, 6, 0.02) 0%, transparent 60%);
  z-index: 1;
}

.screenshots-content {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-description {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 20px auto 40px;
}

.marketplace-btn {
  background: linear-gradient(45deg, #02bd4c, #019a3f);
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(2, 189, 76, 0.3);
}

.marketplace-btn:hover {
  background: linear-gradient(45deg, #019a3f, #017a32);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 189, 76, 0.4);
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.marketplace-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.screenshots-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  z-index: 2;
}

.hand-phone-container {
  position: relative;
  z-index: 3;
  max-width: 400px;
  width: 100%;
}

.hand-phone-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.info-card {
  position: absolute;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-1 {
  top: 10%;
  left: 5%;
}

.card-2 {
  bottom: 20%;
  left: 5%;
}

.card-3 {
  top: 15%;
  right: 5%;
}

.card-image {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
}

.card-link {
  font-size: 0.8rem;
  color: #02bd4c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #019a3f;
}

/* Why Us Section */
.why-us {
  background: white;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.why-column h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #02bd4c;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.benefit-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon img {
  width: 24px;
  height: 24px;
  background: transparent;
  border-radius: 4px;
}

.benefit-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #02bd4c;
}

.benefit-text p {
  color: #666;
  line-height: 1.5;
}


/* Roadmap Section */
.roadmap {
  background: white;
}

.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #02bd4c;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
}

.timeline-item:nth-child(even).animate {
  transform: translateX(0);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: #02bd4c;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #00C896;
  z-index: 2;
  position: relative;
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 40px;
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #02bd4c;
}

.timeline-content p {
  color: #666;
  line-height: 1.5;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.stat-item.animate {
  opacity: 1;
  transform: scale(1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: white;
}

/* FAQ Section */
.faq {
  background: #F8F9FA;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.faq-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, #02bd4c, #f8d306);
  border-radius: 2px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
  color: #02bd4c;
  background: rgba(2, 189, 76, 0.05);
  padding-left: 20px;
}

.faq-question:hover::before {
  height: 20px;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #02bd4c;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #02bd4c, #f8d306);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg) scale(1.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 25px 0;
  color: #666;
  line-height: 1.6;
}

/* Waitlist Contact */
.waitlist-contact {
  margin-top: 40px;
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-text {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.waitlist-contact .contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.waitlist-contact .contact-email:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.waitlist-contact .email-icon {
  font-size: 1rem;
}

/* Waitlist Contact */
.waitlist-contact {
  margin-top: 40px;
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-text {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.waitlist-contact .contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.waitlist-contact .contact-email:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.waitlist-contact .email-icon {
  font-size: 1rem;
}

/* Waitlist Section */
.waitlist-section {
  background: 
    linear-gradient(135deg, #02bd4c 0%, #019a3f 50%, #017a32 100%),
    radial-gradient(circle at 30% 20%, rgba(248, 211, 6, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(2, 189, 76, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 10% 60%, rgba(1, 154, 63, 0.3) 0%, transparent 30%);
  position: relative;
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(248, 211, 6, 0.05) 2px,
      rgba(248, 211, 6, 0.05) 4px
    );
  z-index: 1;
}

.waitlist-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(248, 211, 6, 0.08) 0%, transparent 60%),
    linear-gradient(45deg, transparent 30%, rgba(1, 122, 50, 0.1) 50%, transparent 70%);
  z-index: 2;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 1;
  }
  25% { 
    transform: translateX(10px) translateY(-5px) rotate(1deg);
    opacity: 0.8;
  }
  50% { 
    transform: translateX(-5px) translateY(10px) rotate(-1deg);
    opacity: 0.9;
  }
  75% { 
    transform: translateX(5px) translateY(-3px) rotate(0.5deg);
    opacity: 0.85;
  }
}

.waitlist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.waitlist-form-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.waitlist-logo {
  margin-bottom: 20px;
}

.logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: #f8d306;
  background: #f8d306;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-decorative-line {
  width: 60px;
  height: 2px;
  background: #f8d306;
  margin-bottom: 40px;
  position: relative;
}

.waitlist-decorative-line::after {
  content: '';
  position: absolute;
  right: -10px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid #f8d306;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.waitlist-form-container {
  width: 100%;
  max-width: 400px;
}

#waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

#waitlist-form input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  transition: all 0.3s ease;
}

#waitlist-form input::placeholder {
  color: #666;
}

#waitlist-form input:focus {
  outline: none;
  border-color: #f8d306;
  background: white;
  box-shadow: 0 0 0 3px rgba(248, 211, 6, 0.1);
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #666;
  cursor: pointer;
}

.forgot-password {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #f8d306;
}

.waitlist-button {
  padding: 18px 36px;
  background: #f8d306;
  color: #333;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(248, 211, 6, 0.3);
}

.waitlist-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 211, 6, 0.4);
}

.waitlist-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.waitlist-button.loading {
  position: relative;
  overflow: hidden;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #333;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Success Popup Styles */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.success-popup.show .popup-content {
  transform: scale(1);
}

.popup-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #02bd4c, #019a3f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin: 0 auto 20px;
  font-weight: bold;
}

.popup-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.popup-content p {
  font-size: 1.1rem;
  color: #666;
  margin: 0 0 20px 0;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: #f5f5f5;
  color: #333;
}

.waitlist-text-side {
  color: white;
}

.waitlist-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
}

.waitlist-subtitle {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
}

.highlight {
  color: #f8d306;
  text-decoration: underline;
  text-decoration-color: #f8d306;
  text-underline-offset: 3px;
}

#response {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

#response.success {
  background: rgba(40, 167, 69, 0.9);
  color: white;
}

#response.error {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}

#response.show {
  display: block;
  animation: fadeIn 0.5s ease;
}


/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #02bd4c, transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-logo h3 {
  background: linear-gradient(45deg, #02bd4c, #f8d306);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.footer-logo p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links h4 {
  color: #f8d306;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
  position: relative;
  font-size: 1rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #02bd4c, #f8d306);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 30px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-social h4 {
  color: #f8d306;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #02bd4c, #f8d306);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.social-link:hover::before {
  left: 0;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(2, 189, 76, 0.3);
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
}

/* Animations */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

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

/* History Page Styles */
.history-hero {
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.history-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.history-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.story-timeline {
  background: white;
  padding: 100px 0;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #02bd4c, #019a3f);
  transform: translateX(-50%);
}

.story-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.story-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.story-item:nth-child(even) {
  flex-direction: row-reverse;
  transform: translateX(50px);
}

.story-item:nth-child(even).animate {
  transform: translateX(0);
}

.story-dot {
  width: 25px;
  height: 25px;
  background: #02bd4c;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 0 0 5px #02bd4c;
  z-index: 2;
  position: relative;
}

.story-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin: 0 50px;
  flex: 1;
  border-left: 4px solid #f8d306;
}

.story-date {
  color: #02bd4c;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #02bd4c;
}

.story-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.story-image {
  margin-top: 20px;
}

.placeholder-image {
  width: 100px;
  height: 100px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.idea-placeholder {
  background: linear-gradient(135deg, #02bd4c, #019a3f);
}

.prototype-placeholder {
  background: linear-gradient(135deg, #02bd4c, #019a3f);
}

.users-placeholder {
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.chat-placeholder {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.community-placeholder {
  background: linear-gradient(135deg, #A8E6CF, #7FCDCD);
}

.future-placeholder {
  background: linear-gradient(135deg, #FFD93D, #FF6B6B);
}

.team-section {
  background: #F5F5F5;
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.team-member.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.team-member h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #02bd4c;
}

.team-member p {
  color: #666;
  margin-bottom: 15px;
}

.member-bio {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #888;
}

.vision-section {
  background: linear-gradient(135deg, #02bd4c, #019a3f);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.vision-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.vision-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.vision-content .btn {
  margin-top: 20px;
}

/* Large screens responsive */
@media (min-width: 1400px) {
  .history-hero {
    padding: 180px 0 120px;
  }
  
  .history-hero-content h1 {
    font-size: 3.5rem;
  }
  
  .history-hero-content p {
    font-size: 1.4rem;
  }
  
  .story-timeline {
    padding: 120px 0;
  }
  
  .story-content {
    padding: 50px;
  }
  
  .story-content h3 {
    font-size: 1.6rem;
  }
  
  .story-content p {
    font-size: 1.1rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  
  .team-member {
    padding: 50px 40px;
  }
  
  .vision-content h2 {
    font-size: 2.8rem;
  }
  
  .vision-content p {
    font-size: 1.3rem;
  }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .history-hero {
    padding: 130px 0 90px;
  }
  
  .history-hero-content h1 {
    font-size: 2.8rem;
  }
  
  .history-hero-content p {
    font-size: 1.2rem;
  }
  
  .story-timeline {
    padding: 90px 0;
  }
  
  .story-content {
    padding: 35px;
  }
  
  .story-content h3 {
    font-size: 1.4rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .team-member:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .vision-content h2 {
    font-size: 2.2rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .hero-left {
    order: 1;
  }
  
  .hero-right {
    order: 2;
  }
  
  .hero-buttons {
    order: 3;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-welcome {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* Dölj text på mobil */
  .hero-subtitle {
    display: none;
  }
  
  /* Knappar under bilden bredvid varandra */
  .hero-buttons {
    order: 3;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gofundme-visual {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .gofundme-info {
    text-align: center;
  }
  
  .funding-stats {
    justify-content: center;
    gap: 30px;
  }
  
  .goal-amount {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .roadmap-timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 50px;
  }
  
  .timeline-dot {
    position: absolute;
    left: 10px;
  }
  
  .timeline-content {
    margin: 0;
  }
  
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .footer-logo p {
    max-width: 100%;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .screenshots-visual {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }
  
  .hand-phone-container {
    max-width: 300px;
  }
  
  .info-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .info-card {
    position: relative;
    max-width: 100%;
  }
  
  .card-1, .card-2, .card-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  
  /* History page responsive */
  .history-hero {
    padding: 120px 0 80px;
  }
  
  .history-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .history-hero-content p {
    font-size: 1.1rem;
  }
  
  .story-timeline {
    padding: 80px 0;
  }
  
  .timeline-container::before {
    left: 20px;
  }
  
  .story-item {
    flex-direction: row !important;
    padding-left: 50px;
    margin-bottom: 60px;
  }
  
  .story-item:nth-child(even) {
    flex-direction: row !important;
  }
  
  .story-dot {
    position: absolute;
    left: 10px;
  }
  
  .story-content {
    margin: 0;
    padding: 30px;
  }
  
  .story-content h3 {
    font-size: 1.3rem;
  }
  
  .story-content p {
    font-size: 0.95rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .team-member {
    padding: 30px 20px;
  }
  
  .vision-content h2 {
    font-size: 2rem;
  }
  
  .vision-content p {
    font-size: 1rem;
  }
  
  .how-it-works .container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  
  .how-it-works-content {
    text-align: center;
    padding: 0 20px 40px 20px;
  }
  
  /* Mobile-First How It Works - Redesigned */
  .how-it-works {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  }
  
  .how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(2, 189, 76, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(248, 211, 6, 0.04) 0%, transparent 60%);
  }
  
  .how-it-works-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
  }
  
  .how-it-works-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }
  
  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  .step-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 
      0 4px 20px rgba(0,0,0,0.08),
      0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid rgba(2, 189, 76, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02bd4c, #f8d306);
  }
  
  .step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 50% 0%, rgba(2, 189, 76, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 8px 30px rgba(0,0,0,0.12),
      0 2px 8px rgba(0,0,0,0.08);
  }
  
  .step-card:hover::after {
    opacity: 1;
  }
  
  .step-card:active {
    transform: translateY(-2px) scale(0.98);
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #02bd4c, #019a3f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(2, 189, 76, 0.3);
    transition: all 0.3s ease;
  }
  
  .step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(2, 189, 76, 0.4);
  }
  
  .step-card:hover .step-icon::before {
    opacity: 1;
  }
  
  .step-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
  }
  
  .step-content {
    text-align: center;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #02bd4c;
    letter-spacing: -0.01em;
  }
  
  .step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
  }
  
  /* Mobile Animations */
  .step-card {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
  }
  
  .step-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .step-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .step-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  /* Touch Interactions */
  .step-card:active {
    transform: translateY(-2px) scale(0.98);
  }
  
  .step-icon:active {
    transform: scale(1.05) rotate(3deg);
  }
  
  /* Mobile-specific improvements */
  .how-it-works-content h2 {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .how-it-works-content p {
    animation: fadeInUp 0.6s ease-out 0.1s both;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  
  .hero-left {
    order: 1;
  }
  
  .hero-right {
    order: 2;
  }
  
  .hero-buttons {
    order: 3;
  }
  
  .hero-welcome {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  /* Knappar under bilden bredvid varandra */
  .hero-buttons {
    order: 3;
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* History page mobile - Enhanced */
  .history-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #02bd4c, #019a3f);
    position: relative;
    overflow: hidden;
  }
  
  .history-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
  }
  
  .history-hero-content {
    position: relative;
    z-index: 2;
  }
  
  .history-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
  }
  
  .history-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .story-timeline {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .story-item {
    margin-bottom: 50px;
    padding-left: 40px;
    position: relative;
    animation: slideInLeft 0.8s ease-out;
  }
  
  .story-item:nth-child(even) {
    animation: slideInRight 0.8s ease-out;
  }
  
  .story-content {
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(2, 189, 76, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02bd4c, #f8d306);
  }
  
  .story-content:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 15px 40px rgba(0, 0, 0, 0.15),
      0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #02bd4c;
    font-weight: 700;
  }
  
  .story-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  
  .story-date {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #f8d306;
    font-weight: 600;
    background: rgba(248, 211, 6, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
  }
  
  .placeholder-image {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .placeholder-image:hover {
    transform: scale(1.1) rotate(5deg);
  }
  
  .team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
  }
  
  .team-member {
    padding: 30px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(2, 189, 76, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02bd4c, #f8d306);
  }
  
  .team-member:hover {
    transform: translateY(-8px);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.15),
      0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .member-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .member-avatar:hover {
    transform: scale(1.1) rotate(5deg);
  }
  
  .team-member h3 {
    font-size: 1.2rem;
    color: #02bd4c;
    font-weight: 700;
    margin: 15px 0 8px 0;
  }
  
  .team-member p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
  }
  
  .member-bio {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
  }
  
  .vision-section {
    background: linear-gradient(135deg, #02bd4c, #019a3f);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }
  
  .vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
  }
  
  .vision-content {
    position: relative;
    z-index: 2;
  }
  
  .vision-content h2 {
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
  }
  
  .vision-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
    margin-bottom: 15px;
  }
  
  
  /* Touch-friendly interactions for mobile */
  .story-content:active {
    transform: translateY(-2px) scale(0.98);
  }
  
  .team-member:active {
    transform: translateY(-4px) scale(0.98);
  }
  
  .btn:active {
    transform: translateY(-1px) scale(0.95);
  }
  
  .placeholder-image:active {
    transform: scale(1.05) rotate(3deg);
  }
  
  .member-avatar:active {
    transform: scale(1.05) rotate(3deg);
  }
  
  /* Enhanced mobile navigation */
  .navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  
  .nav-menu a {
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .nav-menu a:active {
    background: rgba(2, 189, 76, 0.1);
    transform: scale(0.95);
  }
  
  /* Mobile-specific animations */
  .story-item {
    animation-delay: calc(var(--item-index, 0) * 0.1s);
  }
  
  .team-member {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: calc(var(--member-index, 0) * 0.2s);
    animation-fill-mode: both;
  }
  
  /* Improved mobile typography */
  .history-hero-content h1 {
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  
  .story-content h3 {
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  
  /* Mobile-optimized spacing */
  .story-timeline .container {
    padding: 0 20px;
  }
  
  .team-section .container {
    padding: 0 20px;
  }
  
  .vision-section .container {
    padding: 0 20px;
  }
  
  
  .waitlist-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .waitlist-form-side {
    align-items: center;
  }
  
  .waitlist-title {
    font-size: 2rem;
  }
  
  .waitlist-subtitle {
    font-size: 1rem;
  }
  
  .waitlist-form-container {
    max-width: 100%;
  }
}

/* Extra small screens - Enhanced */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .history-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #02bd4c, #019a3f);
    position: relative;
    overflow: hidden;
  }
  
  .history-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
  }
  
  .history-hero-content {
    position: relative;
    z-index: 2;
  }
  
  .history-hero-content h1 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
  }
  
  .history-hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .story-timeline {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  }
  
  .story-item {
    margin-bottom: 35px;
    padding-left: 30px;
    position: relative;
    animation: slideInLeft 0.8s ease-out;
  }
  
  .story-item:nth-child(even) {
    animation: slideInRight 0.8s ease-out;
  }
  
  .story-content {
    padding: 20px;
    background: white;
    border-radius: 18px;
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.1),
      0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(2, 189, 76, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .story-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #02bd4c, #f8d306);
  }
  
  .story-content:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 12px 35px rgba(0, 0, 0, 0.15),
      0 5px 18px rgba(0, 0, 0, 0.1);
  }
  
  .story-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #02bd4c;
    font-weight: 700;
  }
  
  .story-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
  }
  
  .story-date {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #f8d306;
    font-weight: 600;
    background: rgba(248, 211, 6, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    display: inline-block;
  }
  
  .placeholder-image {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .placeholder-image:hover {
    transform: scale(1.1) rotate(5deg);
  }
  
  .team-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
  }
  
  .team-member {
    padding: 25px 15px;
    background: white;
    border-radius: 20px;
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.1),
      0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(2, 189, 76, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #02bd4c, #f8d306);
  }
  
  .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 
      0 15px 35px rgba(0, 0, 0, 0.15),
      0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .member-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  
  .member-avatar:hover {
    transform: scale(1.1) rotate(5deg);
  }
  
  .team-member h3 {
    font-size: 1.1rem;
    color: #02bd4c;
    font-weight: 700;
    margin: 12px 0 6px 0;
  }
  
  .team-member p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
  }
  
  .member-bio {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
  }
  
  .vision-section {
    background: linear-gradient(135deg, #02bd4c, #019a3f);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  .vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
  }
  
  .vision-content {
    position: relative;
    z-index: 2;
  }
  
  .vision-content h2 {
    font-size: 1.7rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
  }
  
  .vision-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
    opacity: 0.95;
    margin-bottom: 12px;
  }
  
  
  /* Touch-friendly interactions for extra small screens */
  .story-content:active {
    transform: translateY(-1px) scale(0.98);
  }
  
  .team-member:active {
    transform: translateY(-3px) scale(0.98);
  }
  
  .btn:active {
    transform: translateY(-1px) scale(0.95);
  }
  
  .placeholder-image:active {
    transform: scale(1.05) rotate(3deg);
  }
  
  .member-avatar:active {
    transform: scale(1.05) rotate(3deg);
  }
  
  /* Enhanced mobile navigation for small screens */
  .navbar {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  
  .nav-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  
  .nav-menu a:active {
    background: rgba(2, 189, 76, 0.1);
    transform: scale(0.95);
  }
  
  /* Mobile-specific animations for small screens */
  .story-item {
    animation-delay: calc(var(--item-index, 0) * 0.08s);
  }
  
  .team-member {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(var(--member-index, 0) * 0.15s);
    animation-fill-mode: both;
  }
  
  /* Improved typography for small screens */
  .history-hero-content h1 {
    letter-spacing: -0.01em;
    line-height: 1.1;
  }
  
  .story-content h3 {
    letter-spacing: 0;
    line-height: 1.2;
  }
  
  /* Extra small screen spacing */
  .story-timeline .container {
    padding: 0 15px;
  }
  
  .team-section .container {
    padding: 0 15px;
  }
  
  .vision-section .container {
    padding: 0 15px;
  }
  
  /* Extra Small Screens - How It Works */
  .how-it-works {
    padding: 30px 0;
  }
  
  .how-it-works-content {
    padding: 0 15px 30px 15px;
  }
  
  .how-it-works-content h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .how-it-works-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .steps-container {
    gap: 15px;
    padding: 0 15px;
  }
  
  .step-card {
    padding: 20px;
    border-radius: 16px;
  }
  
  .step-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .step-icon img {
    width: 20px;
    height: 20px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .step-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .history-hero {
    padding: 80px 0 40px;
  }
  
  .history-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .history-hero-content p {
    font-size: 1rem;
  }
  
  .story-timeline {
    padding: 40px 0;
  }
  
  .story-item {
    margin-bottom: 30px;
  }
  
  .story-content {
    padding: 20px;
  }
  
  .team-section {
    padding: 40px 0;
  }
  
  .vision-section {
    padding: 40px 0;
  }
}
