:root {
  --blue: #1E90FF;
  --orange: #FF7F50;
  --gray: #555;
  --bg: #fff;
  --shadow: 0 4px 24px rgba(30,144,255,0.08);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; background: var(--bg); color: var(--gray); font-family: 'Open Sans', Arial, sans-serif; scroll-behavior: smooth; }
body { overflow-x: hidden; }
header {
  position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 8px rgba(30,144,255,0.04); }
nav {
  display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-size: 2rem; color: var(--blue); font-weight: 700; letter-spacing: 1px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--gray); font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.hero {
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 90vh; text-align: center; position: relative; overflow: hidden; }
.hero-bg-shape {
  position: absolute; width: 600px; height: 600px; background: var(--blue); opacity: 0.08; border-radius: 50%; top: -200px; left: -200px; z-index: 0; }
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; color: var(--blue); margin-bottom: 0.5rem; animation: fadeInDown 1s; }
.hero .tagline { font-size: 1.5rem; color: var(--orange); margin-bottom: 2rem; animation: fadeInUp 1.2s; }
.hero-illustration {
  width: 320px;
  height: auto;
  margin: 0 auto 1.2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-illustration img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.hero-download-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero .cta-btn {
  background: linear-gradient(90deg, var(--blue), var(--orange)); color: #fff; border: none; border-radius: 32px; padding: 1rem 2.5rem; font-size: 1.25rem; font-family: 'Montserrat', sans-serif; font-weight: 700; box-shadow: var(--shadow); cursor: pointer; margin-bottom: 1.5rem; animation: bounce 2s infinite; transition: box-shadow 0.2s, transform 0.2s; }
.hero .cta-btn:hover { box-shadow: 0 8px 32px rgba(30,144,255,0.16); transform: translateY(-4px) scale(1.04); }
.app-stores { display: inline-block; margin: 0 auto; vertical-align: middle; text-align: center; }
.app-stores img { height: 48px; margin: 0 0.5rem; transition: transform 0.2s; display: inline-block; }
.app-stores img:hover { transform: scale(1.08); }
section { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; position: relative; }
.section-title { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; color: var(--blue); margin-bottom: 2rem; text-align: center; }
.sub-section-title { font-family: 'Montserrat', sans-serif; font-size: 1.6rem; color: var(--orange); margin: 2.5rem 0 2rem; text-align: center; position: relative; padding-bottom: 1rem; }
.sub-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 3px;
}
.how-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.how-step { background: #f8faff; border-radius: 24px; box-shadow: var(--shadow); padding: 2rem 1.5rem; flex: 1 1 220px; min-width: 220px; max-width: 300px; text-align: center; transition: transform 0.3s; position: relative; }
.how-step:hover { transform: translateY(-8px) scale(1.04); }
.how-step .icon { font-size: 3rem; margin-bottom: 1rem; animation: floatIcon 3s infinite; }
.features-list { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 2rem; 
  justify-content: center; 
  margin-bottom: 3rem;
}
.feature-card { 
  background: #fff; 
  border-radius: 20px; 
  box-shadow: var(--shadow); 
  padding: 2rem 1.5rem; 
  flex: 1 1 300px; 
  min-width: 280px; 
  max-width: 350px; 
  text-align: center; 
  opacity: 0; 
  transform: translateY(40px); 
  transition: opacity 0.6s, transform 0.6s, box-shadow 0.3s, transform 0.3s; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(30,144,255,0.16);
  transform: translateY(-8px);
}
.feature-card.visible { 
  opacity: 1; 
  transform: translateY(0); 
}
.feature-card .icon { 
  font-size: 3rem; 
  margin-bottom: 1.2rem; 
  color: var(--orange);
  background: #f8faff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(30,144,255,0.08);
}
.testimonials { display: flex; flex-direction: column; align-items: center; }
.testimonial-carousel { width: 100%; max-width: 600px; position: relative; }
.testimonial { display: none; flex-direction: column; align-items: center; text-align: center; padding: 2rem 1rem; }
.testimonial.active { display: flex; animation: fadeIn 1s; }
.testimonial .avatar { width: 64px; height: 64px; border-radius: 50%; background: #f8faff; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.testimonial .quote { font-size: 1.1rem; font-style: italic; margin-bottom: 0.5rem; }
.testimonial .author { font-weight: 700; color: var(--blue); }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: #eee; cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: var(--blue); }
.for-companies { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; align-items: flex-start; }
.for-card { background: #f8faff; border-radius: 20px; box-shadow: var(--shadow); padding: 2rem 1.5rem; flex: 1 1 220px; min-width: 220px; max-width: 300px; text-align: center; }
.for-card .icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--blue); }
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(90deg, #f8faff 60%, #fff 100%);
  border-radius: 32px;
  margin: 3rem auto;
  width: 100%;
  max-width: 1100px;
}
.cta-section .cta-btn { background: linear-gradient(90deg, var(--blue), var(--orange)); color: #fff; border: none; border-radius: 32px; padding: 1.2rem 3rem; font-size: 1.4rem; font-family: 'Montserrat', sans-serif; font-weight: 700; box-shadow: var(--shadow); cursor: pointer; margin-bottom: 1.5rem; animation: bounce 2s infinite; transition: box-shadow 0.2s, transform 0.2s; }
.cta-section .cta-btn:hover { box-shadow: 0 8px 32px rgba(30,144,255,0.16); transform: translateY(-4px) scale(1.04); }
footer {
  background: #f8faff; padding: 2rem 1rem; text-align: center; border-radius: 24px 24px 0 0; margin-top: 3rem; }
.footer-socials { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.footer-socials a { color: var(--blue); font-size: 1.5rem; transition: color 0.2s; }
.footer-socials a:hover { color: var(--orange); }
.footer-links { margin-top: 1rem; font-size: 0.95rem; color: #888; }
.footer-links a { color: var(--blue); text-decoration: none; margin: 0 0.5rem; }
.footer-links a:hover { text-decoration: underline; }
.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.features-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .feature-card {
    min-width: 240px;
    padding: 1.5rem 1rem;
  }
  
  .feature-card .icon {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .features-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
}
@media (max-width: 900px) {
  .how-steps, .features-list, .for-companies { flex-direction: column; align-items: center; }
  nav { flex-direction: column; gap: 1rem; }
  .nav-links { flex-direction: column; gap: 1.2rem; margin-top: 0.5rem; }
  .cta-section {
    padding: 2.5rem 0.5rem;
    max-width: 98vw;
  }
  .cta-center {
    padding: 0 0.5rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    min-height: unset;
    overflow: visible;
  }
  .hero h1 { font-size: 2.1rem; margin-bottom: 0.7rem; }
  .hero-illustration {
    width: 90vw;
    min-width: 0;
    padding: 0;
  }
  .hero-illustration img {
    max-height: 160px;
  }
  .hero-download-area {
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .hero .cta-btn {
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
  }
  .section-title { font-size: 1.3rem; margin-bottom: 1.2rem; }
  .how-step, .feature-card, .for-card { min-width: 160px; max-width: 100%; padding: 1.2rem 0.5rem; }
  .cta-section {
    padding: 1.2rem 0.2rem;
    border-radius: 18px;
    margin: 2.5rem auto 1.5rem auto;
  }
  .cta-center {
    padding: 0 0.2rem;
  }
  .cta-section .cta-btn {
    font-size: 1.05rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.2rem;
  }
  .app-stores img {
    display: block;
    margin: 0.5rem auto;
  }
  .cta-center > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  nav {
    padding: 0.7rem 0.5rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  section {
    padding: 2.2rem 0.5rem 2.2rem 0.5rem;
    margin-bottom: 0.7rem;
  }
  .hero .cta-btn {
    margin-bottom: 1.2rem;
  }
}

/* Features section animations and additional styling */
#features {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  border-radius: 0 0 30px 30px;
}

.feature-card:nth-child(odd) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(even) {
  animation-delay: 0.4s;
}

/* Add a staggered animation for feature cards */
@keyframes fadeInStagger {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Animations */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } 
.cta-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-card .icon + img {
  margin-top: 0.5rem;
} 
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: var(--blue);
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.5rem;
  }
  .nav-logo {
    flex: 1 1 auto;
  }
  .nav-hamburger {
    display: flex;
    margin-left: 1rem;
    z-index: 201;
  }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0 1.5rem 0;
    box-shadow: 0 8px 32px rgba(30,144,255,0.08);
    display: none;
    transition: all 0.3s;
  }
  .nav-links.open {
    display: flex;
  }
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
} 
.feature-title {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  color: var(--blue);
}
.feature-desc {
  padding-top: 0.2rem;
  line-height: 1.5;
  color: #555;
} 
.coming-soon-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 144, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: all;
  opacity: 0;
  transition: opacity 0.3s;
}
.coming-soon-overlay.show {
  opacity: 1;
  animation: fadeInScale 0.3s;
}
.coming-soon-message {
  background: #fff;
  color: #1E90FF;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 2rem 2.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,144,255,0.12);
  text-align: center;
  animation: popIn 0.4s;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
} 
.waitlist-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 144, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: all;
  animation: fadeInScale 0.3s;
}
.waitlist-modal-content {
  background: #fff;
  color: #1E90FF;
  font-family: 'Montserrat', sans-serif;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,144,255,0.12);
  text-align: center;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  min-width: 320px;
  max-width: 90vw;
  position: relative;
  animation: popIn 0.4s;
}
.waitlist-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.waitlist-message {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #333;
}
.waitlist-input {
  width: 80%;
  max-width: 320px;
  padding: 0.7rem 1rem;
  border: 1.5px solid #1E90FF;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border 0.2s;
}
.waitlist-input:focus {
  border: 2px solid #FF7F50;
}
.waitlist-join-btn {
  background: linear-gradient(90deg, #1E90FF, #FF7F50);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,144,255,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.waitlist-join-btn:hover {
  background: linear-gradient(90deg, #FF7F50, #1E90FF);
  box-shadow: 0 4px 24px rgba(30,144,255,0.12);
}
.waitlist-close {
  position: absolute;
  top: 0.7rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1E90FF;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s;
}
.waitlist-close:hover {
  color: #FF7F50;
}
.waitlist-success {
  color: #1E90FF;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  animation: fadeInScale 0.4s;
}
@media (max-width: 600px) {
  .waitlist-modal-content {
    min-width: 0;
    width: 92vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .waitlist-title {
    font-size: 1.2rem;
  }
  .waitlist-message {
    font-size: 0.98rem;
  }
  .waitlist-input {
    width: 95%;
    font-size: 0.98rem;
  }
  .waitlist-join-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}