.screen-text {
  color: white;
  margin-top: auto;
  margin-bottom: 60px;
}

.screen-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 900;
}

.features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.features .card {
  flex: 1;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.badge-buttons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
}

img.store-badge {
  height: 50px;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 565px;
  background: var(--dark);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.phone-screen {
  background: #fff;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.inner-screen-content {
  padding: 20px;
}

.chart {
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: block;
}

.chart-area {
  fill: url(#gradient);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-icon {
  display: block;
  width: 60px;
  height: 60px;
  padding: 30px;
  margin: 20px;
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary);
  font-size: 24px;
}

.app-navbar {
  background: rgba(255,255,255,0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  backdrop-filter: blur(5px);
}

.section-header {
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}

.section-header h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-description {
  max-width: 800px;
  font-size: 18px;
  color: var(--grey);
  text-align: center;
  margin: 0 auto;
}

.section-description li {
  text-align: left;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.pricing-options {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  text-align: center;
}

@media (max-width: 768px) {
  .phone-mockup {
    width: 240px;
    height: 470px;
  }

  .features {
    flex-direction: column;
  }

  .essentials-grid {
    grid-template-columns: 1fr;
  }
  
  .essential-card {
    max-width: 500px;
    margin: 0 auto;
  }
}