/* Key Features Section Styles */
.features-section {
  padding: 64px 40px;
  padding-bottom: 0;
  background: white;
  overflow: hidden;
}

.features-container {
  max-width: 1307px;
  margin: 0 auto;
}

.features-section .section-title {
  margin-bottom: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-item.reverse {
  direction: rtl;
}

.feature-item.reverse > * {
  direction: ltr;
}

.feature-content {
  color: #111113;
}

.feature-title {
  font-size: 72px;
  line-height: 86px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111113;
}

.feature-subtitle {
  font-size: 1.3rem;
  color: #111113;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #111113;
}

.feature-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-image-placeholder {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 2rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/feature-placeholder.jpg');
  background-size: cover;
  background-position: center;
}

/* When actual images are added, use this class */
.feature-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.chat-bubble {
  width: 150px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 20px;
  position: relative;
}

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #e3f2fd;
}

.phone-icon,
.tablet-icon {
  font-size: 3rem;
}

.feature-icon-large {
  font-size: 4rem;
  text-align: center;
  padding: 2rem;
}

.feature-screenshot {
  background: #1a1a2e;
  border-radius: 10px;
  padding: 2rem;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/screenshot-placeholder.jpg');
  background-size: cover;
  background-position: center;
}

/* When actual screenshots are added, use this class */
.feature-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.screenshot-placeholder {
  color: white;
  font-size: 1.1rem;
  text-align: center;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .features-section {
    padding: 32px 20px;
    padding-bottom: 0;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .feature-item.reverse {
    direction: ltr;
  }

  .feature-title {
    font-size: 64px;
    line-height: 78px;
  }

  .feature-subtitle {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .features-section {
    padding: 32px 20px;
    padding-bottom: 0;
  }

  .feature-title {
    font-size: 48px;
    line-height: 58px;
  }

  .feature-subtitle {
    font-size: 1rem;
  }
}
