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

:root {
  --primary: #07c160;
  --secondary: #1cbbb4;
  --accent: #ffad0d;
  --dark: #242833;
  --light: #f8f9fa;
  --gray: #5a6570;
  --light-gray: #dfe6e9;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}

.logo i {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  background: rgba(7, 193, 96, 0.12);
  color: var(--primary);
}

.cta-button {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(7, 193, 96, 0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(7, 193, 96, 0.35);
}


.hero-section {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-width: 80%;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

h1 span {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-size: 1.4rem;
  color: var(--gray);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  color: var(--dark);
}


.features-section {
  padding: 80px 0;
  background: white;
  border-radius: 25px;
  margin: 40px 0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 25px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(7, 193, 96, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  min-width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-text p {
  color: var(--gray);
  line-height: 1.7;
}


.showcase-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(to bottom, #f8fff9, #f0f9ff);
  border-radius: 30px;
  overflow: hidden;
}

.showcase-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.showcase-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.showcase-image img {
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.showcase-text {
  flex: 1;
}

.showcase-text h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark);
}

.benefits {
  list-style: none;
}

.benefits li {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.benefits i {
  background: var(--primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.benefits p {
  color: var(--gray);
  line-height: 1.7;
}


.screenshots-section {
  padding: 80px 0;
}

.screenshots-container {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 30px 0;
  scrollbar-width: none;
}

.screenshots-container::-webkit-scrollbar {
  display: none;
}

.screenshot {
  min-width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.screenshot:hover {
  transform: scale(1.03);
}

.screenshot img {
  width: 100%;
  height: auto;
  display: block;
}




.download-section {
  padding: 80px 0;
  text-align: center;
}

.download-container {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 80px 40px;
  border-radius: 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(7, 193, 96, 0.25);
  color: white;
}

.download-container h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.download-container p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.app-download {
  background: rgba(0, 0, 0, 0.2);
  padding: 18px 35px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.app-download:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.app-download i {
  font-size: 2.2rem;
}

.app-text h3 {
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.app-text p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}


footer {
  background: var(--dark);
  padding: 30px 0 30px;
  color: var(--light-gray);
}




.copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 1rem;
  opacity: 0.8;
}



