/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Optimize for performance */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #183153;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  overflow-x: hidden;
  position: relative;
  padding-top: 72px; /* Account for fixed navbar */
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(41, 182, 246, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: #29B6F6;
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
}

a:hover {
  color: #4CAF50;
}

/* Stunning Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(41, 182, 246, 0.08);
  z-index: 1000;
  transition: background 0.15s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  padding: 0.25rem 0;
  height: 48px;
  display: flex;
  align-items: center;
}

.navbar:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(41, 182, 246, 0.12);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

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

.logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(41, 182, 246, 0.15);
  transition: transform 0.15s ease;
}

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  color: #5C6B82;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  transition: color 0.15s ease;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
  transition: width 0.15s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

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

.nav-links a:hover {
  color: #29B6F6;
}

/* Spectacular Welcome Section */
.welcome {
  padding: 8rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, 0.08) 0%, 
    rgba(41, 182, 246, 0.08) 50%, 
    rgba(24, 49, 83, 0.05) 100%);
  position: relative;
  overflow: hidden;
  margin: 0;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.welcome::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(41, 182, 246, 0.05) 0%, transparent 50%);
}

.welcome-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.welcome-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 50%, #4CAF50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(41, 182, 246, 0.1);
}

.welcome-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: -1px;
}

.welcome-description {
  font-size: 1.6rem;
  color: #5C6B82;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.6s both;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Hero Section Redesign */
.hero {
  padding: 6rem 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  margin: 2rem auto;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50, #183153);
  border-radius: 30px 30px 0 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #5C6B82;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideInLeft 1s ease-out 0.4s both;
}

/* Optimized Buttons */
.btn, .store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before, .store-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::before, .store-badge:hover::before {
  left: 100%;
}

.btn-primary, .store-badge.ios {
  background: linear-gradient(135deg, #29B6F6 0%, #2196F3 100%);
  color: #fff;
  box-shadow: 
    0 8px 25px rgba(41, 182, 246, 0.3),
    0 0 0 1px rgba(41, 182, 246, 0.2);
}

.btn-primary:hover, .store-badge.ios:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary, .store-badge.android {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  box-shadow: 
    0 8px 25px rgba(76, 175, 80, 0.3),
    0 0 0 1px rgba(76, 175, 80, 0.2);
}

.btn-secondary:hover, .store-badge.android:hover {
  background: linear-gradient(135deg, #29B6F6 0%, #2196F3 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41, 182, 246, 0.3);
}

/* Phone Mockup Enhancement */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  animation: slideInRight 1s ease-out 0.6s both;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.app-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.chat-bubble {
  max-width: 80%;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: fadeInUp 0.6s ease-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.chat-bubble.left {
  background: linear-gradient(135deg, #29B6F6, #2196F3);
  color: white;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.chat-bubble.right {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

/* Section Enhancements */
section {
  max-width: 1200px;
  margin: 4rem auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  padding: 4rem 3rem;
  border: 1px solid rgba(179, 229, 252, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  will-change: transform, box-shadow;
}

/* Full-screen hero sections */
.full-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  border-radius: 0;
  max-width: none;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50, #183153);
  border-radius: 30px 30px 0 0;
}

section:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Typography Revolution */
h1, h2, h3 {
  color: #183153;
  margin-top: 0;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 50%, #4CAF50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  color: #29B6F6;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

p {
  color: #5C6B82;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Features Grid Enhancement */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  border-radius: 16px;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
  transform: scaleX(0);
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
}

.feature-item h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #183153, #29B6F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-item p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5C6B82;
}

/* Lists Enhancement */
ul, ol {
  padding-left: 2rem;
  color: #5C6B82;
}

ul li, ol li {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.1rem;
  position: relative;
}

ul li::before {
  content: '✨';
  position: absolute;
  left: -1.5rem;
  color: #29B6F6;
}

/* Emergency Resources Enhancement */
.emergency-resources {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(76, 175, 80, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.emergency-resources h3 {
  color: #4CAF50;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-align: center;
}

/* Interest Form Enhancement */
.interest-form {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(41, 182, 246, 0.05));
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.interest-form h2 {
  margin-bottom: 2rem;
}

.interest-form > p {
  text-align: center;
  font-size: 1.3rem;
  color: #5C6B82;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.8;
}

.form-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.form-option {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  border-radius: 25px;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.form-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-option:hover::before {
  transform: scaleX(1);
}

.form-option.detailed::before {
  background: linear-gradient(135deg, #29B6F6, #2196F3);
}

.form-option.simple::before {
  background: linear-gradient(135deg, #4CAF50, #45a049);
}

.form-option:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.form-option h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #183153, #29B6F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-option p {
  font-size: 1.1rem;
  color: #5C6B82;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.form-option ul {
  text-align: left;
  margin-bottom: 2.5rem;
}

.form-option ul li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #5C6B82;
}

.form-option ul li::before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: #4CAF50;
  font-weight: bold;
}

.form-option .btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(179, 229, 252, 0.3);
}

.form-note p {
  margin: 0;
  font-size: 0.95rem;
  color: #5C6B82;
  font-weight: 500;
}

/* Download Section Enhancement */
.download {
  text-align: center;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), rgba(76, 175, 80, 0.05));
  border: 1px solid rgba(41, 182, 246, 0.2);
}

.download h2 {
  margin-bottom: 2rem;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.qr-codes {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-placeholder:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Footer Enhancement */
footer {
  background: linear-gradient(135deg, #183153, #1e3a5f);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content > div {
  margin-bottom: 1.5rem;
}

footer a {
  color: #29B6F6;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover {
  color: #4CAF50;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

footer .disclaimer {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

footer .copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Social Media Enhancement */
.social-media {
  margin: 2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
  justify-content: center;
}

.social-link.instagram {
  background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
  box-shadow: 
    0 8px 25px rgba(228, 64, 95, 0.3),
    0 0 0 1px rgba(228, 64, 95, 0.2);
}

.social-link.instagram:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(228, 64, 95, 0.4),
    0 0 0 1px rgba(228, 64, 95, 0.3);
  background: linear-gradient(135deg, #F56040, #E4405F, #C13584);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077B5, #005885, #004471);
  box-shadow: 
    0 8px 25px rgba(0, 119, 181, 0.3),
    0 0 0 1px rgba(0, 119, 181, 0.2);
}

.social-link.linkedin:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(0, 119, 181, 0.4),
    0 0 0 1px rgba(0, 119, 181, 0.3);
  background: linear-gradient(135deg, #00A0DC, #0077B5, #005885);
}

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

/* Enhanced loading state */
body:not(.loaded) {
  overflow-x: hidden;
}

body:not(.loaded) .navbar {
  opacity: 0;
  transform: translateY(-20px);
}

body.loaded .navbar {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Optimize for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@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);
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #183153;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Social Media Mobile Optimization */
  .social-media {
    margin: 1.5rem 0;
    gap: 0.75rem;
  }
  
  .social-link {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    min-width: 180px;
    gap: 0.5rem;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(41, 182, 246, 0.1);
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  /* Enhanced Mobile Typography */
  .welcome-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .welcome-subtitle {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .welcome-description {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .nav-container {
    padding: 0 1.5rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo {
    width: 32px;
    height: 32px;
  }
  
  /* Improved Mobile Spacing */
  section {
    margin: 1.5rem 0.5rem;
    padding: 2rem 1rem;
  }
  
  .welcome {
    padding: 3rem 1rem 2rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .full-screen {
    min-height: auto;
    margin: 0;
    padding: 3rem 1rem;
  }
  
  /* Mobile Grid Layouts */
  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .qr-codes {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .phone-mockup {
    width: 220px;
    height: 440px;
  }
  
  /* Mobile Typography */
  h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  /* Enhanced Touch Targets */
  .btn, .store-badge {
    min-height: 48px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    touch-action: manipulation;
  }
  
  /* Mobile Footer */
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-content > div {
    margin: 0;
  }
}

@media (max-width: 480px) {
  /* Social Media Small Mobile Optimization */
  .social-media {
    margin: 1rem 0;
    gap: 0.5rem;
  }
  
  .social-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    min-width: 160px;
    gap: 0.4rem;
  }
  
  .social-link svg {
    width: 16px;
    height: 16px;
  }
  
  /* Extra Small Mobile Typography */
  .welcome-title {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .welcome-subtitle {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .welcome-description {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  /* Enhanced Touch Targets for Small Screens */
  .btn, .store-badge {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    min-height: 52px;
    touch-action: manipulation;
  }
  
  /* Smaller Phone Mockup */
  .phone-mockup {
    width: 180px;
    height: 360px;
  }
  
  /* Compact Spacing */
  .welcome {
    padding: 2rem 0.5rem 1.5rem;
  }
  
  .hero {
    padding: 1.5rem 0;
  }
  
  body {
    padding-top: 56px; /* Smaller padding for mobile */
  }
  
  section {
    padding: 1.5rem 0.5rem;
    margin: 1rem 0.25rem;
  }
  
  .full-screen {
    padding: 2rem 0.5rem;
  }
  
  /* Mobile Navigation Adjustments */
  .nav-container {
    padding: 0 1rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .logo {
    width: 28px;
    height: 28px;
  }
  
  /* Mobile Menu Adjustments */
  .nav-links {
    width: 90%;
    max-width: 280px;
    padding: 4rem 1.5rem 2rem;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 0.8rem 0;
  }
  
  /* Mobile Footer Adjustments */
  .footer-content {
    padding: 1.5rem 1rem;
  }
  
  .footer-content a {
    font-size: 0.9rem;
  }
  
  /* Mobile Feature Items */
  .feature-item {
    padding: 1.5rem 1rem;
  }
  
  .feature-item h3 {
    font-size: 1.1rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
  
  /* Mobile Form Options */
  .form-option {
    padding: 1.5rem 1rem;
  }
  
  .form-option h3 {
    font-size: 1.1rem;
  }
  
  .form-option p {
    font-size: 0.9rem;
  }
} 

/* Founders Page Styles */
.founders-intro {
  font-size: 1.2rem;
  color: #5C6B82;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.founder-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.founder-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(41, 182, 246, 0.3);
}

.founder-card h3 {
  color: #183153;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.founder-title {
  color: #29B6F6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.founder-bio {
  color: #5C6B82;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.founder-links {
  margin-top: 1rem;
}

.mission-section {
  margin: 4rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(41, 182, 246, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.mission-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mission-section > p {
  text-align: center;
  font-size: 1.1rem;
  color: #5C6B82;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.value-item h3 {
  color: #29B6F6;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.value-item p {
  color: #5C6B82;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-section {
  text-align: center;
  margin: 3rem 0;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section > p {
  color: #5C6B82;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #29B6F6, #2196F3);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-link:hover {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41, 182, 246, 0.3);
}

@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-values {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    flex-direction: column;
    align-items: center;
  }
} 

/* Story Page Styles */
.story-hero {
  text-align: center;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.08), rgba(76, 175, 80, 0.08));
  border: 1px solid rgba(41, 182, 246, 0.2);
  margin-bottom: 2rem;
}

.story-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #183153, #29B6F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-intro {
  font-size: 1.3rem;
  color: #5C6B82;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5C6B82;
  margin-bottom: 1.5rem;
}

.story-text > p:first-child {
  font-size: 1.3rem;
  font-weight: 500;
  color: #183153;
  text-align: center;
  margin-bottom: 3rem;
}

.founder-story {
  margin: 3rem 0;
}

.founder-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.3s ease;
}

.founder-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.founder-section h3 {
  color: #29B6F6;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.founder-section p {
  margin-bottom: 1rem;
}

.founder-section p:last-child {
  margin-bottom: 0;
}

.mission-beliefs {
  margin: 4rem 0;
  text-align: center;
}

.mission-beliefs h2 {
  margin-bottom: 2rem;
  color: #183153;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.belief-item {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.1), rgba(76, 175, 80, 0.1));
  border: 1px solid rgba(41, 182, 246, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.belief-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.15), rgba(76, 175, 80, 0.15));
}

.belief-item h3 {
  color: #183153;
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

.story-message {
  margin: 4rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(179, 229, 252, 0.3);
}

.story-message p {
  margin-bottom: 1.5rem;
}

.story-message p:last-child {
  margin-bottom: 0;
}

.story-signature {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(41, 182, 246, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.story-signature p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.signature-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(179, 229, 252, 0.3);
}

.signature-block p {
  margin-bottom: 0.5rem;
}

.founders-connect {
  margin: 4rem 0;
  text-align: center;
}

.founders-connect h2 {
  margin-bottom: 2rem;
}

.founders-profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.founder-profile {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.3s ease;
}

.founder-profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.founder-profile h3 {
  color: #183153;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.founder-profile .founder-title {
  color: #29B6F6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.founder-profile .founder-bio {
  color: #5C6B82;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.story-cta {
  text-align: center;
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.08), rgba(76, 175, 80, 0.08));
  border-radius: 20px;
  border: 1px solid rgba(41, 182, 246, 0.2);
}

.story-cta h2 {
  margin-bottom: 1rem;
}

.story-cta p {
  font-size: 1.1rem;
  color: #5C6B82;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .story-hero h1 {
    font-size: 2.5rem;
  }
  
  .story-intro {
    font-size: 1.1rem;
  }
  
  .founder-section {
    padding: 1.5rem;
  }
  
  .beliefs-grid {
    grid-template-columns: 1fr;
  }
  
  .founders-profiles {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .story-cta {
    padding: 2rem 1.5rem;
  }
} 

/* Download Page Styles */
.download-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, 
    rgba(41, 182, 246, 0.08) 0%, 
    rgba(76, 175, 80, 0.08) 50%, 
    rgba(24, 49, 83, 0.05) 100%);
  position: relative;
  overflow: hidden;
  margin: 0;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.download-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(41, 182, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.download-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.download-hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 50%, #4CAF50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
  letter-spacing: -2px;
  line-height: 1.1;
}

.download-hero-subtitle {
  font-size: 1.6rem;
  color: #5C6B82;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  font-weight: 400;
}

.download-options {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.download-options-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.download-option {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.download-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
  border-radius: 30px 30px 0 0;
}

.download-option.ios::before {
  background: linear-gradient(135deg, #29B6F6, #2196F3);
}

.download-option.android::before {
  background: linear-gradient(135deg, #4CAF50, #45a049);
}

.download-option:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.download-icon {
  margin-bottom: 2rem;
  color: #29B6F6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.download-option.android .download-icon {
  color: #4CAF50;
}

.download-option h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #183153, #29B6F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.download-option.android h2 {
  background: linear-gradient(135deg, #183153, #4CAF50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-option > p {
  font-size: 1.2rem;
  color: #5C6B82;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.download-details {
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.download-details ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

.download-details li {
  padding: 0.5rem 0;
  color: #5C6B82;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.download-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
  font-size: 1.1rem;
}

.download-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-text {
  font-size: 1.1rem;
}

.btn-subtext {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

/* QR Section */
.qr-section {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(41, 182, 246, 0.05));
  border: 1px solid rgba(76, 175, 80, 0.2);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 30px;
}

.qr-section h2 {
  margin-bottom: 1rem;
}

.qr-section > p {
  font-size: 1.2rem;
  color: #5C6B82;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.qr-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.qr-code {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ios-qr {
  background: linear-gradient(135deg, #29B6F6, #2196F3);
}

.android-qr {
  background: linear-gradient(135deg, #4CAF50, #45a049);
}

.qr-placeholder {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.qr-item p {
  font-weight: 600;
  color: #183153;
  font-size: 1.1rem;
}

/* System Requirements */
.system-requirements {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.system-requirements h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.requirement-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.requirement-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.requirement-item h3 {
  color: #29B6F6;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  text-align: center;
}

.requirement-item ul {
  list-style: none;
  padding: 0;
}

.requirement-item li {
  padding: 0.75rem 0;
  color: #5C6B82;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid rgba(179, 229, 252, 0.2);
}

.requirement-item li:last-child {
  border-bottom: none;
}

.requirement-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #29B6F6;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Features Preview */
.features-preview {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), rgba(76, 175, 80, 0.05));
  border: 1px solid rgba(41, 182, 246, 0.2);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 30px;
}

.features-preview h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-preview {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(179, 229, 252, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-preview h3 {
  color: #183153;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature-preview p {
  color: #5C6B82;
  font-size: 1rem;
  line-height: 1.6;
}

/* Download CTA */
.download-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(41, 182, 246, 0.08));
  border: 1px solid rgba(76, 175, 80, 0.2);
  margin: 2rem auto;
  max-width: 1200px;
  border-radius: 30px;
}

.download-cta h2 {
  margin-bottom: 1rem;
}

.download-cta p {
  font-size: 1.2rem;
  color: #5C6B82;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for Download Page */
@media (max-width: 768px) {
  .download-hero-title {
    font-size: 2.8rem;
  }
  
  .download-hero-subtitle {
    font-size: 1.3rem;
  }
  
  .download-options-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .download-option {
    padding: 2rem;
  }
  
  .download-option h2 {
    font-size: 1.8rem;
  }
  
  .qr-container {
    gap: 2rem;
  }
  
  .qr-code {
    width: 120px;
    height: 120px;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .download-hero-title {
    font-size: 2.2rem;
  }
  
  .download-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .download-option {
    padding: 1.5rem;
  }
  
  .download-option h2 {
    font-size: 1.5rem;
  }
  
  .qr-code {
    width: 100px;
    height: 100px;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
} 

/* FINAL: Main content starts just below the navbar */
.navbar + *,
.navbar + section,
body > .navbar + * {
  padding-top: 48px !important;
  margin-top: 0 !important;
}

/* FINAL: Elegant, always-visible navbar */
.navbar {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(41,182,246,0.10), 0 1.5px 0 rgba(41,182,246,0.08);
  z-index: 99999 !important;
  border-bottom: none !important;
}

/* Organization and Investor Boxes */
.form-option.org {
  background: linear-gradient(135deg, #e3f2fd 80%, #b2dfdb 100%);
  border: 1px solid #b3e5fc;
}
.form-option.investors {
  background: linear-gradient(135deg, #fffde7 80%, #ffe0b2 100%);
  border: 1px solid #ffe082;
}

/* Social Proof Section */
.social-proof {
  max-width: 900px;
  margin: 4rem auto;
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(41,182,246,0.08);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid #b3e5fc;
}
.social-proof h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quotes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.quotes blockquote {
  background: linear-gradient(135deg, #f8fafc 80%, #e3f2fd 100%);
  border-left: 5px solid #29B6F6;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  color: #183153;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
  box-shadow: 0 2px 12px rgba(41,182,246,0.07);
  position: relative;
}
.quotes blockquote span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: #5C6B82;
  font-style: normal;
}
@media (max-width: 768px) {
  .form-options {
    grid-template-columns: 1fr;
  }
  .quotes blockquote {
    font-size: 1rem;
    padding: 1rem 1.2rem;
  }
} 

/* Table Styles for Privacy Policy and Legal Pages */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(41, 182, 246, 0.1);
}

table thead {
  background: linear-gradient(135deg, #29B6F6, #4CAF50);
}

table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(41, 182, 246, 0.08);
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5C6B82;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table tbody tr:hover {
  background: rgba(41, 182, 246, 0.03);
  transition: background 0.2s ease;
}

/* Privacy Policy Page Specific Styles */
.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(41, 182, 246, 0.1);
}

.privacy-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #183153 0%, #29B6F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.privacy-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  color: #183153;
  border-bottom: 2px solid rgba(41, 182, 246, 0.2);
  padding-bottom: 0.5rem;
}

.privacy-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #29B6F6;
}

.privacy-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
  color: #5C6B82;
}

.privacy-content ul, .privacy-content ol {
  margin: 1.2rem 0 1.2rem 2rem;
}

.privacy-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.privacy-content strong {
  color: #183153;
  font-weight: 600;
}

.privacy-content em {
  color: #4CAF50;
  font-style: italic;
}

.privacy-content a {
  color: #29B6F6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.privacy-content a:hover {
  color: #4CAF50;
  border-bottom-color: #4CAF50;
}

/* Emergency Resources Styling */
.emergency-resources {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.emergency-resources h2 {
  color: #FF5722;
  border-bottom: none;
  margin-top: 0;
}

.emergency-resources ul {
  margin: 1rem 0 0 0;
}

.emergency-resources li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Medical Disclaimer Styling */
.medical-disclaimer {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(103, 58, 183, 0.1));
  border: 2px solid rgba(156, 39, 176, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.medical-disclaimer h2 {
  color: #9C27B0;
  border-bottom: none;
  margin-top: 0;
}

/* Responsive Table Styles */
@media (max-width: 768px) {
  table {
    font-size: 0.85rem;
    margin: 1rem 0;
  }
  
  table th,
  table td {
    padding: 0.75rem 1rem;
  }
  
  .privacy-content {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .privacy-content h1 {
    font-size: 2rem;
  }
  
  .privacy-content h2 {
    font-size: 1.5rem;
  }
  
  .privacy-content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  table {
    font-size: 0.8rem;
  }
  
  table th,
  table td {
    padding: 0.5rem 0.75rem;
  }
  
  .privacy-content {
    padding: 1rem;
    margin: 0.5rem;
  }
  
  .privacy-content h1 {
    font-size: 1.8rem;
  }
  
  .privacy-content h2 {
    font-size: 1.3rem;
  }
  
  .privacy-content h3 {
    font-size: 1.1rem;
  }
  
  .privacy-content ul,
  .privacy-content ol {
    margin-left: 1.5rem;
  }
}

/* Legal Disclaimer Styling */
.legal-disclaimer {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(255, 87, 34, 0.1));
  border: 2px solid rgba(244, 67, 54, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.legal-disclaimer h2 {
  color: #F44336;
  border-bottom: none;
  margin-top: 0;
}

.legal-disclaimer h3 {
  color: #D32F2F;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-disclaimer p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Closing Statement Styling */
.closing-statement {
  text-align: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(41, 182, 246, 0.1));
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.closing-statement p {
  font-size: 1.2rem;
  margin: 0;
  color: #2E7D32;
  font-weight: 600;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .legal-disclaimer,
  .closing-statement {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  
  .legal-disclaimer h3 {
    font-size: 1rem;
  }
  
  .closing-statement p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .legal-disclaimer,
  .closing-statement {
    padding: 0.75rem;
    margin: 1rem 0;
  }
  
  .legal-disclaimer h3 {
    font-size: 0.9rem;
  }
  
  .closing-statement p {
    font-size: 1rem;
  }
}