:root {
  --primary-green: #4fc481;
  --accent-orange: orange;
  --light-green: #e3f5eb;
  --text-dark: black;
  --bg-white: white;
  --font-main: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.hero-main {
  background: 
    linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
    url('../images/bg.webp') center/cover no-repeat;
  padding: 80px 0;
  min-height: 700px;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__logo-center {
  margin-bottom: 3rem;
}

.hero__main-logo {
  height: 120px;
  width: auto;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(45deg, var(--accent-orange), #ff6b35);
  color: white;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.btn--secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--primary-green);
}

.btn--secondary:hover {
  background: var(--primary-green);
  color: white;
}

.benefits-area {
  padding: 100px 0;
  background: white;
}

.benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 20px;
}

.benefits__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.benefits__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.benefits__list {
  list-style: none;
}

.benefits__list li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  color: #333;
}

.benefits__list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits__image {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.image-with-gradient {
  position: relative;
  display: inline-block;
}

.image-with-gradient::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: linear-gradient(45deg, var(--primary-green), var(--accent-orange));
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
  filter: blur(15px);
}

.screenshots-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, var(--light-green));
}

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

.screenshots__title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: var(--text-dark);
}

.screenshots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.screenshot-item {
  text-align: center;
}

.screenshot__image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.screenshot__image:hover {
  transform: translateY(-10px);
}

.screenshot__caption {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 600;
}

.features-section {
  padding: 100px 0;
  background: var(--bg-white);
}

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

.features__heading {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: var(--text-dark);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--light-green);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 20px rgba(79,196,129,0.3);
}

.feature__icon {
  font-size: 2.5rem;
  color: white;
}

.feature__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature__desc {
  font-size: 1rem;
  color: #555;
}

.success-story {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-green), #f8f9fa);
}

.story__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 20px;
}

.story__img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.story__title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.story__description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.stat__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #444;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.howto-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, var(--light-green));
}

.howto__wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step__number {
  background: var(--primary-green);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem auto;
}

.step__heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step__text {
  color: #666;
}

.download-cta {
  background: linear-gradient(45deg, var(--primary-green), var(--accent-orange));
  padding: 80px 0;
  text-align: center;
}

.cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta__heading {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 1rem;
}

.cta__subtext {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn--large {
  background: white;
  color: var(--primary-green);
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn--large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn__icon {
  font-size: 1.5rem;
}

.cta__disclaimer {
  margin-top: 1.5rem;
  color: white;
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-section {
  background: #333;
  color: white;
  padding: 60px 0 20px 0;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 20px;
  margin-bottom: 2rem;
}

.footer__logo {
  height: 35px;
  margin-bottom: 1rem;
}

.footer__tagline {
  color: #ccc;
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 3rem;
}

.footer__heading {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
}

.footer__link {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--primary-green);
}

.footer__bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}

.footer__copyright {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__made-by {
  color: #ccc;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}

.footer__address {
  color: #999;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero__content-wrapper {
    text-align: center;
  }
  
  .hero__main-logo {
    height: 80px;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .benefits__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .screenshots__grid {
    grid-template-columns: 1fr;
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__links {
    justify-content: center;
  }
}