* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary: #fe4e74;
  --primary-light: #ff7e9d;
  --primary-dark: #d93a62;
  --dark: #333;
  --light: #fff;
  --gray: #f8f8f8;
}

body {
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, #fe4e74 0%, #ff7e9d 100%);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--light);
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.download-btn {
  background-color: var(--light);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #a02640c7 0%, #380e17da 100%), url(./1.jpg) center;
  color: var(--light);
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--light);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn i {
  margin-right: 8px;
}

/* Features Section - New Layout */
.features {
  padding: 100px 0;
  background-color: var(--gray);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #666;
}

.features-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.features-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  border-radius: 10px;
}

.feature-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
  padding: 30px;
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:nth-child(odd) .feature-content {
  margin-right: 40px;
}

.feature-item:nth-child(even) .feature-content {
  margin-left: 40px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.feature-item:nth-child(odd) .feature-icon {
  right: -35px;
}

.feature-item:nth-child(even) .feature-icon {
  left: -35px;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* App Showcase */
.app-showcase {
  padding: 100px 0;
  background: var(--light);
}

.showcase-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.showcase-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.showcase-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #555;
}

.showcase-images {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--dark);
  border-radius: 40px;
  padding: 15px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

/* Download Section */
.download {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary) 100%
  );
  color: var(--light);
  text-align: center;
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.download p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .features-timeline::before {
    left: 30px;
  }

  .feature-item {
    flex-direction: row !important;
    margin-left: 60px;
  }

  .feature-item:nth-child(odd) .feature-content,
  .feature-item:nth-child(even) .feature-content {
    margin: 0;
  }

  .feature-icon {
    left: -60px !important;
    right: auto !important;
  }

  .showcase-container {
    flex-direction: column;
  }

  .showcase-text {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
