:root {
  --primary: #6a0dad; /* WindVeal Purple */
  --secondary: #8b5cf6; /* Lighter purple for gradients */
  --bg: #f8f9ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
}

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

body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { text-decoration: none; color: inherit; }

/* ================= NAVBAR ================= */

header {
  background: #ffffffcc;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-weight: 500;
}

.cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu-drawer {
  position: fixed;
  top: 80px;
  right: 24px;
  width: auto;
  min-width: 220px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
  border-radius: 16px;
  z-index: 1100;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  transition: all 0.2s ease-out;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-weight: 500;
}

.mobile-menu-drawer.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ================= HERO ================= */

.hero {
  padding-top: 160px;
  padding-bottom: 40px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  background: url('../images/hero-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 600px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: 0;
  margin-right: 0;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
}

.buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
}

.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.avatars span {
  width: 32px;
  height: 32px;
  background: #e0e7ff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: -6px;
  border: 2px solid #fff;
}

.hero-mobile-img {
  display: none;
}

/* ================= FEATURES ================= */

.features {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
  text-align: center;
}

.features h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

.features h2 span {
  color: var(--secondary);
}

.features p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 72px;
  margin: 0 auto 48px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--card);
  padding: 42px;
  border-radius: 24px;
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ================= ABOUT & STORIES ================= */

.about, .stories {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
  text-align: center;
}

.about h2, .stories h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

.about h2 span, .stories h2 span {
  color: var(--secondary);
}

.stories > p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 48px;
}

.about p {
  color: var(--muted);
  max-width: 1000px;
  margin: 0 auto 48px;
  font-size: 1.25rem;
  line-height: 1.8;
}

.story-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.story-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.story-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.story-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================= FOOTER ================= */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px 30px;
  background: #fff;
  text-align: center;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

footer h4 {
  margin-bottom: 16px;
}

footer p, footer a {
  color: var(--muted);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .nav-links, .cta-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    background: none;
    padding-top: 120px;
    padding-bottom: 30px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-mobile-img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    order: -1;
  }

  .hero h1 {
    font-size: 44px;
  }

  .grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    padding: 24px;
    flex: 0 0 auto;
  }

  .features {
    padding: 30px 24px;
  }

  .about, .stories {
    padding: 30px 24px;
  }

  .story-meta {
    justify-content: center;
  }

  footer {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
