/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: 0.2s;
}

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

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Search bar */
.search-bar {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  outline: none;
  font-size: 14px;
  background: rgba(255,255,255,0.8);
  transition: 0.2s;
}

.search-bar:focus {
  border-color: #999;
}

/* Button */
.download-btn {
  padding: 9px 16px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
}

.download-btn:hover {
  opacity: 0.85;
}

/* Base styles same as before... keep yours, then ADD below */

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

.hamburger span {
  width: 22px;
  height: 2px;
  background: #000;
  transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
    
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.mobile-search {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
}

.mobile-download {
  text-align: center;
  padding: 12px;
  background: black;
  color: white;
  border-radius: 999px;
  text-decoration: none;
}

/* Show menu when active */
.mobile-menu.active {
  max-height: 400px; /* enough to fit content */
  opacity: 1;
  transform: translateY(0);
  padding: 20px;
}

/* Responsive rules */
@media (max-width: 768px) {
  .nav-links,
  .search-bar {
    display: none;
  }

  /* Keep download visible */
  .download-btn {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
  }

  .hamburger {
    display: flex;
  }
}

/* Animate hamburger into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* HERO */

/* HERO */
.hero {
    margin-top: -25px;
  padding: 70px 24px 140px; /* more vertical space */
  background: linear-gradient(to bottom, #ffffff, #f4f6f8);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* more horizontal breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px; /* more space between text & image */
}

/* TEXT */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 25px;
}

.hero-buttons {
  margin-bottom: 24px;
}

.primary-btn {
  padding: 10px 18px;
  background: blue;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  padding: 15px 24px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  text-decoration: none;
  color: #333;
}

/* SOCIAL PROOF */
.hero-proof {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* IMAGE */
.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 180px;
  position: relative;
  z-index: 2;
}

/* Glow effect */
.phone-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,0,0,0.08), transparent 70%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

/* MOBILE */
@media (max-width: 768px) {
      .hero {
    padding: 70px 20px 100px;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-proof {
    justify-content: center;
  }
}

/* SECTION */
.features {
  padding: 120px 24px;
  background: #0f0f0f;
  color: white;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT SIDE */
.features-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  padding: 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
  background: transparent;
}

.feature-item:hover {
  background: rgba(255,255,255,0.05);
}

.feature-item.active {
  background: rgba(255,255,255,0.08);
}

.feature-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.feature-item p {
  color: #aaa;
  font-size: 14px;
}

/* RIGHT SIDE */
.features-image {
  flex: 1;
  position: relative;
}

.feature-img {
  width: 100%;
  max-width: 220px;
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.feature-img.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* MOBILE */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    text-align: center;
  }

  .features-image {
    margin-top: 40px;
  }

  .feature-img {
    position: relative;
  }
}/* ==========================
   FOOTER
========================== */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-brand h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-brand p {
  color: #94a3b8;
  font-size: .95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: .25s;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #4f9cff;
  transition: .25s;
}

.footer-links a:hover {
  color: white;
}

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

.copyright {
  font-size: .9rem;
  color: #64748b;
}

/* Mobile */

@media (max-width: 600px) {

  .footer-container {
      padding: 50px 20px 25px;
  }

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

}