/* ============================================
   iAgentMart — Features Page
   ============================================ */

.features-page {
  background: #F6F6F4;
}

.features-page .nav {
  background: rgba(255, 255, 255, 0.92);
}

.features-page .nav__link--active {
  color: #FFFFFF;
  background: #111111;
}

.features-store {
  min-height: calc(100vh - var(--nav-height));
  padding-top: calc(var(--nav-height) + var(--space-8));
  padding-bottom: var(--space-16);
  background: #F6F6F4;
}

.features-store__head {
  max-width: 760px;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid #D9D8D3;
  margin-bottom: var(--space-6);
}

.features-store .section__label {
  display: block;
  width: fit-content;
  margin: 0 0 var(--space-2);
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #73706A;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0;
}

.features-store .section__title {
  margin: 0;
  color: #111111;
  font-size: var(--text-5xl);
  line-height: 1;
  letter-spacing: 0;
}

.features-store .section__subtitle {
  max-width: 620px;
  margin: var(--space-4) 0 0;
  color: #55524D;
  font-size: var(--text-base);
  line-height: 1.65;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.feature-card {
  position: relative;
  min-height: 250px;
  background: #FFFFFF;
  border: 1px solid #D9D8D3;
  border-radius: 10px;
  padding: var(--space-6);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out), border-color var(--duration-normal) var(--ease-out);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.03);
}

.feature-card:hover {
  border-color: #B9B6AE;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E1E0DB;
  border-radius: 10px;
  margin-bottom: var(--space-8);
  background: #F6F6F4;
  color: #111111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: #111111;
  margin-bottom: var(--space-3);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: #55524D;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .features-store {
    padding-top: calc(var(--nav-height) + var(--space-5));
  }

  .features-store .section__title {
    font-size: var(--text-3xl);
  }

  .features__grid {
    grid-template-columns: 1fr;
  }
}
