/* Base Styles */
:root {
  --primary-color: #FF8C42;
  --secondary-color: #2196F3;
  --accent-color: #9C27B0;
  --green-color: #4CAF50;
  --text-color: #333333;
  --light-text: #757575;
  --background-color: #FFFFFF;
  --light-background: #F8F9FA;
  --border-color: #E0E0E0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 15px;
  color: var(--light-text);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
  position: relative;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #e67e22;
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #1976D2;
  color: white;
}

/* Launch Banner */
.launch-banner {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 0;
  text-align: center;
}

.launch-banner p {
  color: white;
  margin-bottom: 0;
}

/* Coming Soon Badge */
.coming-soon-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: var(--shadow);
  white-space: nowrap;
}

/* Navigation */
header {
  background: var(--background-color);
  box-shadow: var(--shadow);
  position: relative;
}

nav {
  padding: 20px 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-color);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 20px;
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  line-height: 1.2;
}

.hero p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Hero Signup Form */
.hero-signup {
  margin-bottom: 25px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.hero-signup h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

#hero-signup-form {
  display: flex;
  gap: 10px;
}

#hero-signup-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

#hero-signup-form button {
  white-space: nowrap;
}

.download-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Features Section */
.features {
  background-color: var(--light-background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--primary-color);
}

/* How It Works Section */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

/* Download Section */
.download {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.download .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.download-content {
  flex: 1;
}

.download h2, 
.download p {
  color: white;
  text-align: left;
}

.download .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.download .btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.app-screens {
  flex: 1;
  display: flex;
  gap: 15px;
  position: relative;
}

.app-screens img {
  max-height: 400px;
  border-radius: 15px;
  border: 5px solid white;
  box-shadow: var(--shadow);
}

.app-screens img:nth-child(1) {
  transform: rotate(-5deg);
  z-index: 1;
}

.app-screens img:nth-child(2) {
  transform: translateY(-20px);
  z-index: 2;
}

.app-screens img:nth-child(3) {
  transform: rotate(5deg);
  z-index: 1;
}

/* Signup Section */
.signup {
  background-color: var(--light-background);
  text-align: center;
}

.signup-content {
  max-width: 600px;
  margin: 0 auto;
}

#signup-form {
  display: flex;
  margin-top: 30px;
  max-width: 500px;
  margin: 30px auto 0;
}

#signup-form input {
  flex: 1;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

#signup-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  border: none;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.link-column {
  flex: 1;
  min-width: 150px;
}

.link-column h4 {
  margin-bottom: 20px;
  color: white;
}

.link-column ul {
  list-style: none;
}

.link-column li {
  margin-bottom: 10px;
}

.link-column a {
  color: #aaa;
  transition: var(--transition);
}

.link-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .download-buttons {
    justify-content: center;
  }

  .download .container {
    flex-direction: column;
    text-align: center;
  }

  .download h2, 
  .download p {
    text-align: center;
  }

  .download .download-buttons {
    justify-content: center;
    margin-bottom: 30px;
  }
  
  #hero-signup-form {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .app-screens {
    display: none;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    padding: 15px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
  
  #hero-signup-form {
    flex-direction: column;
    gap: 10px;
  }
  
  #hero-signup-form input {
    width: 100%;
  }
  
  #hero-signup-form button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .nav-links {
    display: none;
  }

  section {
    padding: 50px 0;
  }

  .download-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  #signup-form {
    flex-direction: column;
  }

  #signup-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }

  #signup-form button {
    border-radius: var(--border-radius);
  }
} 