
/* Updated CSS - cache refresh */
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
}

.logo {
  height: 180px !important;
  width: auto;
  object-fit: contain;
  display: block;
}

nav .cta {
  background: linear-gradient(to right, #ff9800, #f44336);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

nav .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 0.5rem;
}

.hero-section {
  text-align: center;
  margin-bottom: 1rem;
  margin-top: -4.3rem;
}

.hero-section h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  color: #ff6d1f;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-top: 0;
}

.hero-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 400px;
  margin: 0 0 2rem 0;
  line-height: 1.4;
  text-align: left;
}

.hero-description br {
  display: block;
  content: "";
  margin-top: 0.5rem;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-text-signup {
  flex: 1;
  max-width: 400px;
}

.app-mockup {
  text-align: center;
  flex: 1;
  max-width: 350px;
}

.app-mockup img {
  width: 320px;
  height: auto;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid #333;
  background: #f8f9fa;
}

.mockup-caption {
  margin-top: 0.5rem;
  color: #666;
  font-style: italic;
  font-size: 0.8rem;
}

.signup {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  scroll-margin-top: 4rem;
}

.signup input[type="email"] {
  padding: 1rem;
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.signup input[type="email"]:focus {
  outline: none;
  border-color: #ff9800;
}

.signup button {
  padding: 1rem;
  width: 100%;
  background: linear-gradient(to right, #ff9800, #f44336);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.signup button:hover {
  transform: translateY(-2px);
}

.signup-note {
  margin-top: 1rem;
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.feature {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

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

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

.feature h3 {
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

.site-footer {
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 1px solid #eee;
  color: #666;
}

@media(min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-section h1 {
    font-size: 3.8rem;
  }
}

@media(max-width: 767px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .hero-description {
    text-align: center;
    margin: 0 auto 1.5rem;
  }
  
  .app-mockup {
    order: -1;
  }
  .logo {
    height: 68px;
  }
  
  .site-header {
    padding: 0.75rem 1rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .app-mockup img {
    width: 320px;
    height: auto;
  }
}
