/* Able App - Features section */
.able-features-section .ableFeatureContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.able-features-section .ableFeatureHeader {
  position: sticky;
  top: 120px;
}

.able-features-section .ableFeatureTabs {
  display: none;
}

.able-features-section .ableFeatureCards {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  gap: 160px;
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .able-features-section .ableFeatureContent {
    gap: 0;
  }
}

@media (min-width: 1400px) and (max-width: 1800px) {
  .able-features-section .ableFeatureContent {
    gap: 0;
  }
}

@media (max-width: 1024px) {
  .able-features-section .ableFeatureTabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 450px;
    border-radius: 20px;
    background: #f2f2f3;
    border: 1px solid #e3e3e5;
    padding: 8px;
    margin: 0 auto 32px;
  }

  .able-features-section .ableFeatureTab {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #333f5b;
    cursor: pointer;
  }

  .able-features-section .activeMobileTab {
    background: #3495ff;
    color: #fff;
  }

  .able-features-section .inactiveMobileTab {
    background: transparent;
    color: #333f5b;
  }

  .able-features-section .ableFeatureTabText {
    letter-spacing: -0.02em;
    line-height: 150%;
    font-weight: 500;
    font-size: 15px;
    font-family: "Avenir Next", sans-serif;
  }

  .able-features-section .ableFeatureContent {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .able-features-section .ableFeatureCards {
    padding-top: 0;
    gap: 30px;
  }

  .able-features-section .ableFeatureHeader {
    position: static;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .able-features-section .ableFeatureTabs {
    margin-bottom: 20px;
    width: 100%;
  }

  .able-features-section .ableFeatureContent {
    gap: 10px;
  }

  .able-features-section .ableFeatureCards {
    gap: 70px;
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .able-features-section .ableFeatureTabs {
    margin-bottom: 0;
  }

  .able-features-section .ableFeatureContent {
    gap: 10px;
    padding: 0 20px;
  }

  .able-features-section .ableFeatureCards {
    gap: 40px;
    padding: 20px 10px;
  }
}

/* Able Head */
.able-features-section .ableHead {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.able-features-section .courseColorBand {
  width: 130px;
  height: 380px;
  position: absolute;
  top: clamp(80px, 40vw, 280px);
  bottom: clamp(80px, -8vw, 50px);
  left: -180px;
  filter: blur(clamp(50px, 7vw, 80px));
  border-radius: 50%;
  background: radial-gradient(ellipse, #3495ff 0%, #3495ff 25%, rgba(52, 149, 255, 0.7) 50%, rgba(52, 149, 255, 0.3) 100%);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.able-features-section .courseColorOrange {
  width: clamp(100px, 22vw, 380px);
  height: 480px;
  position: absolute;
  top: 450px;
  left: -80px;
  filter: blur(clamp(50px, 10vw, 380px));
  border-radius: 50%;
  background: radial-gradient(ellipse, #f8d194 0%, #f8d194 30%, rgba(248, 209, 148, 0.8) 60%, rgba(248, 209, 148, 0.3) 100%);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.able-features-section .ableHeadTitle {
  font-weight: 500;
  font-family: 'P22 Mackinac Pro', serif;
  color: #333f5b;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
  max-width: 500px;
}

@media (max-width: 1024px) {
  .able-features-section .ableHeadTitle {
    font-size: 60px;
  }

  .able-features-section .ableHead {
    display: none;
  }
}

@media (max-width: 768px) {
  .able-features-section .ableHeadTitle {
    font-size: clamp(28px, 6vw, 40px);
    text-align: left;
  }

  .able-features-section .courseColorBand,
  .able-features-section .courseColorOrange {
    display: none;
  }

  .able-features-section .ableHead {
    display: none;
  }
}

@media (max-width: 640px) {
  .able-features-section .ableHeadTitle {
    font-size: clamp(28px, 6vw, 20px);
    text-align: left;
  }

  .able-features-section .courseColorBand,
  .able-features-section .courseColorOrange {
    display: none;
  }

  .able-features-section .ableHead {
    display: none;
  }
}

.able-features-section .storeBtn {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  border: 1px solid #333f5b;
  background: transparent;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.able-features-section .storeBtn:hover {
  background: #333f5b;
}

.able-features-section .storeBtn:hover .storeIcon {
  filter: brightness(0) invert(1);
}

.able-features-section .storeIcon {
  width: 24px;
  height: 24px;
}

.able-features-section .actions {
  display: flex;
  gap: 20px;
}

/* Feature Card */
.able-features-section .ableFeatureCard {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.able-features-section .ableFeatureImageContainer {
  position: relative;
  left: -190px;
  flex-shrink: 0;
}

.able-features-section .ableFeatureImage {
  width: 500px;
  height: 650px;
  object-fit: contain;
}

.able-features-section .ableFeatureCardContent {
  display: flex;
  align-items: center;
  position: relative;
  left: -120px;
}

.able-features-section .ableFeatureTextContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.able-features-section .ableFeatureCardTitle {
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  font-family: 'P22 Mackinac Pro', serif;
  color: #333f5b;
}

.able-features-section .ableFeatureCardDescription {
  font-size: 16px;
  line-height: 1.5;
  color: #6d717b;
  font-family: 'Avenir Next', sans-serif;
  max-width: 100%;
  margin: 0;
  word-wrap: break-word;
  white-space: normal;
}

@media (min-width: 1025px) and (max-width: 1399px) {
  .able-features-section .ableFeatureImageContainer {
    left: -90px;
  }

  .able-features-section .ableFeatureImage {
    width: 300px;
  }

  .able-features-section .ableFeatureCardContent {
    left: -20px;
  }

  .able-features-section .ableFeatureCardTitle {
    font-size: 20px;
  }
}

@media (min-width: 1400px) and (max-width: 1800px) {
  .able-features-section .ableFeatureImageContainer {
    left: -140px;
  }

  .able-features-section .ableFeatureImage {
    width: 400px;
  }

  .able-features-section .ableFeatureCardContent {
    left: -50px;
  }

  .able-features-section .ableFeatureCardTitle {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .able-features-section .ableFeatureImageContainer {
    left: 0;
  }

  .able-features-section .ableFeatureCard {
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .able-features-section .ableFeatureCard[data-active="true"] {
    display: flex;
  }

  .able-features-section .ableFeatureImage {
    width: 400px;
    height: 400px;
  }

  .able-features-section .ableFeatureCardContent {
    padding-top: 40px;
    left: 0;
  }

  .able-features-section .ableFeatureCardTitle {
    display: none;
  }

  .able-features-section .ableFeatureTextContent {
    align-items: center;
    max-width: 100%;
  }

  .able-features-section .ableFeatureCardDescription {
    font-size: 15px;
    text-align: center;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .able-features-section .ableFeatureImage {
    width: 320px;
  }

  .able-features-section .ableFeatureCardTitle {
    font-size: 28px;
  }

  .able-features-section .ableFeatureCardDescription {
    font-size: 15px;
    text-align: center;
    max-width: 280px;
  }

  .able-features-section .ableFeatureTextContent {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .able-features-section .ableFeatureImage {
    width: 280px;
  }

  .able-features-section .ableFeatureCardTitle {
    display: none;
  }
}
